SAXBuilder.buid(inputStream); Problem
843834Dec 17 2003 — edited Dec 19 2003
Hi:
I'm having a problem with building a document from an input stream using SAXBuilder.build(inputStream);
Below is an example to my problem:
InputStream in = req.getInputStream(); // My program is ok up to this point and I have tested that the data is getting here.
Document doc = builder.build(in); // The program gets to this point and just stops - no Exception, no error, it just stops.
Can anyone help? Thanks