Tagged Questions
1
vote
2answers
2k views
Programmatically creating an XML Document using an XSD
I need to create XML documents using built-in java org.w3c.dom or jdom packages conforming to a set of XSD files. The XSD files are similar but not the same. In essence, I need to create the XML file ...
0
votes
1answer
26 views
How to switch java code from using local XML file to URL of an XML file
I have written web application that reads an XMl file parses it and does some work.
Rather than using a local file, I'd like to use a URL of the XML file ( something like ...
0
votes
1answer
316 views
unknown protocol: c (JDOM a SAXBuilder)
I'm using JDOM with SAXBuilder to parse XML files, today I have a problem with a file wich is throwing this error :
java.net.MalformedURLException: unknown protocol: c
at ...
0
votes
2answers
52 views
How can I automate the XML Parsing using JDOM
I have to parse an XML file using JDOM and get some infos from all his elements.
<?xml version="1.0" encoding="UTF-8"?>
<root>
<element1>something</element1>
...
0
votes
2answers
397 views
JDom working with XPath
I am a newbie to JDom, I try to use XPath to access my xml file. My code is like following:
public static void main(String[] args) throws Exception {
Document doc = new ...
0
votes
1answer
182 views
Getting JDOMException on One Machine but the same xml works fine in another
I am hitting an xml and getting the response back in inputstream. This xml is on the remote server.
Whenever I am running my code on the server, it gives me JDOMException,but the same code, I am ...