Can I send large data as a stream in request or response
I have to send a large amount of string data as a part of request to the web service provider. I cant send it as a simple string object as it will lead to OutOfMemory error. Is there any way so that i can send the data as a stream to the web service provider? I couldn't find anything in web service specification where InputStream data type is there.. so is there any alternative to send large amount of data to web service provider?
Thank you.

