[jdom-interest] passing doc through socket
Alex Brud
alex at ispfocus.com
Wed Oct 18 05:49:37 PDT 2000
hi all
i'm trying to path a document converted to outputStream through a
server-socket application.
to send the document im using (at the client end):
XMLOutputter outputter = new XMLOutputter();
outputter.output(doc,out) as 'out' == ItsSocket.getOutputStream;
to receve the stream , im using (at the server end):
DOMBuilder builder = new DOMBuilder();
doc = builder.build(itsSocket.getinputStream);
but it seems that the process is "stuck" when building the document.
the process never get beyong the builder line.
please help
thanks
More information about the jdom-interest
mailing list