Hello,

I wanted to parse a XML file of 30 megs, but I get the following error:

Exception in thread "main" java.net.ConnectException: Connection timed out:
connect
        at java.net.PlainSocketImpl.socketConnect(Native Method)
        at java.net.PlainSocketImpl.doConnect(Unknown Source)
  ...
  at sun.net.www.http.HttpClient.openServer(Unknown Source)
        ...
        at org.apache.xerces.impl.XMLEntityManager.setupCurrentEntity(Unknown 
Source)
        at org.apache.xerces.impl.XMLEntityManager.startEntity(Unknown Source)
        ...

It both happens with SAX and DOM:

SAXParser parser = new SAXParser();
parser.setContentHandler(this);
parser.parse(file);

documentBuilder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
Document document = documentBuilder.parse(file);

I also tried to increase the allowed memory usage of the virtual machine, but
that didn't help. It has something to do with the filesize of the input XML
file, since everything works perfect with small files.

Someone who has an idea what is wrong and how it can be fixed?

And why are sockets and the HTTP protocol used anyway, to load a XML file on my
hard disk?

thanks a lot for your time,

-- 
Peter

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to