Please, help....
I'm calling a web service method that return a large soap object and I'm getting the OutOfMemoryException
.
How could I avoid that? Is there a way to do that?
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.dotNet=true;
envelope.setOutputSoapObject(request);
try {
httpTransport.call(SOAP_ACTION, envelope);// Here I am getting error
}
catch(Exception e){}
I appreciate any help. Best regards, Leonardo