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 running on my local machine and hitting the same xml on remote server, it is running fine.
URL url = new URL("http://testwww.net/xml/android.xml");
InputStream stream = url.openStream();
try {
SAXBuilder builder = new SAXBuilder(false);
xmlDocument = builder.build(stream);
} catch (JDOMException e) {
throw new Exception("unable to read android listing document", e);
}
I am not able to figure out what can be the problem here, that the same xml is running fine on one machine and not on other.
Please help me.
Thanks Hp