We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The string2Doc in XMLHelper ignores the namespaceAwareness parameter.
/** * Helper program: Transforms a String to a XML Document. * * @param inputXMLString the input xml string * @param namespaceAwareness the namespace awareness * @return parsed document */ public static Document string2Doc(String inputXMLString, boolean namespaceAwareness) { try { return XmlDocumentReader.parse(inputXMLString, false); } catch (IOException | SAXException e) { log.error("Cannot parse XML string.", e); return null; } // try { // DocumentBuilder builder = getDocumentBuilder(namespaceAwareness); // InputSource is = new InputSource(new StringReader(inputXMLString)); // is.setEncoding("UTF-8"); // return builder.parse(is); // } catch (SAXException | ParserConfigurationException | IOException e) { // log.error("cannot parse following content\n\n" + inputXMLString); // e.printStackTrace(); // return null; // } }
The text was updated successfully, but these errors were encountered:
@physikerwelt Do you know if that was a conscious decision?
Sorry, something went wrong.
No branches or pull requests
The string2Doc in XMLHelper ignores the namespaceAwareness parameter.
The text was updated successfully, but these errors were encountered: