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
