Can you help me adjust this code so it manages to parse the XML? If I drop the XML namespace it works:
String webXmlContent = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + ...
Trying to SAX parse
<foo bar:car="zoo"/>
org.dom4j.DocumentException: Error on line 1 of document file:///c:/temp/test.xml : The prefix "bar" for attribute "bar:car" associated with an element type "foo" is not bound. Nested ...
I'm using XPath to pull out just the values of URL128 XML element. There can be many of these even though I just have one in the below example. ...