You are viewing a plain text version of this content. The canonical link for it is here.
Posted to soap-user@xml.apache.org by Bruno Fischel <bf...@us.ibm.com> on 2002/05/22 20:15:26 UTC

Using SOAP to transport a big amount of data (1+ GB)

Hello,
I currently have a webservice that send back a big xml string over the
network. My service method implementation currently return a String object.
But this is not efficient beacause the whole String is created BEFORE being
written to the HTTP connection.
Is it possible to create a web service that write the retun object directly
to the HTTP connection (so, in fact, I need my service implementation to be
able to access this HTTP connection)?


Bruno