Please, help....
I call a web service method that returns a large soap object, and I get OutOfMemoryException.
How could I avoid this? Is there any way to do this?
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.dotNet=true;
envelope.setOutputSoapObject(request);
try {
httpTransport.call(SOAP_ACTION, envelope);
}
catch(Exception e){}
I appreciate any help. Regards, Leonardo
source
share