I am using ksoap2
library in android for implementing soap webservices.
Now this works well when the data to be downloaded is small (few kb/mb's).
But when the response is large it gives me OutOfMemoryError
after the below loc,
HttpTransportSE.call(ACTION,SoapSerializationEnvelope);
I know that this is caused due to low heap space. I have read same post here.
But there may be some other way instead of customizing the HttpTransportSE
class itself (In ref to above link ).
below is the ss: