私のプロジェクトでは、SQLサーバーから数千のレコードとして応答を返すWebサービスを呼び出していますが、SOAP ENVELOPEのデフォルトサイズは64KBであるため、log-catとOutOfMemory
例外で最初の15レコードしか取得していません...
教えてくださいこのレスポンスをSDカードのxmlファイルに書き込む方法。
private static String SOAP_ACTION1 ="http://tempuri.org/DownloadAllMasterDataRelatedToFarmer";
private static String NAMESPACE = "http://tempuri.org/";
private static String METHOD_NAME1 = "DownloadAllMasterDataRelatedToFarmer";
private static String URL = "http://someIP/Tracebaledemo/fieldbook/webservice1.asmxwsdl";
(...)
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME1);
request.addProperty("prefixText",txtFar.getText().toString());
request.addProperty("count",txtCount.getText().toString());
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.setOutputSoapObject(request);
envelope.dotNet = true;
try {
HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);
Log.d(TAG, "Entering Try and calling WebService");
//this is the actual part that will call the webservice
androidHttpTransport.call(SOAP_ACTION1, envelope);
// Get the SoapResult from the envelope body.
Log.d(TAG, "Fetching Results");
SoapObject result = (SoapObject)envelope.bodyIn;
Log.d(TAG, "Result from WebService before if block= "+result);
} (...)