私の問題は、このスタック ポスト ( Android リモート メソッドのデータ制限) に関連している可能性があると思います。返されるデータのサイズのみが 661KB であり、記事ではバインダーが 1MB をサポートできると述べています。
状況は次のとおりです。単一のパラメーターを受け取り、パイプで区切られた文字列と整数値の配列リストを返す Web サービスを呼び出す非同期タスクがあります。次に、これらの値を取得して、JAVA 配列リストに挿入します。小規模なデータセットでは、これはうまく機能します。より大きなデータセット (つまり、この 661KB のデータセット) では、以下のエラーが発生します。
ログキャット:
12-12 15:33:46.118: D/ProgressBar(14998): setProgress = 0
12-12 15:33:46.118: D/ProgressBar(14998): setProgress = 0, fromUser = false
12-12 15:33:46.118: D/ProgressBar(14998): mProgress = 0mIndeterminate = false, mMin = 0, mMax = 10000
12-12 15:33:46.168: I/Async_GetAllTechSched(14998): create soap object
12-12 15:33:46.168: I/Async_GetAllTechSched(14998): create envelope
12-12 15:33:46.168: I/Async_GetAllTechSched(14998): create transport
12-12 15:33:46.208: D/ProgressBar(14998): updateDrawableBounds: left = 0
12-12 15:33:46.208: D/ProgressBar(14998): updateDrawableBounds: top = 0
12-12 15:33:46.208: D/ProgressBar(14998): updateDrawableBounds: right = 144
12-12 15:33:46.208: D/ProgressBar(14998): updateDrawableBounds: bottom = 144
12-12 15:33:51.613: D/dalvikvm(14998): GC_FOR_ALLOC freed 6262K, 37% free 18436K/29244K, paused 24ms, total 24ms
12-12 15:33:51.944: D/dalvikvm(14998): GC_FOR_ALLOC freed 594K, 36% free 18880K/29244K, paused 29ms, total 30ms
12-12 15:33:51.974: D/dalvikvm(14998): GC_FOR_ALLOC freed <1K, 34% free 19556K/29244K, paused 29ms, total 29ms
12-12 15:33:52.084: D/dalvikvm(14998): GC_FOR_ALLOC freed 2307K, 27% free 21387K/29244K, paused 20ms, total 20ms
12-12 15:33:52.204: D/dalvikvm(14998): GC_FOR_ALLOC freed 1597K, 25% free 22117K/29244K, paused 22ms, total 22ms
12-12 15:33:52.244: I/Async_GetAllTechSched(14998): pre SOAP response
12-12 15:33:52.244: I/Async_GetAllTechSched(14998): post SOAP response
12-12 15:33:52.244: I/Async_GetAllTechSched(14998): PRE - add response to array
12-12 15:33:52.244: I/Async_GetAllTechSched(14998): POST - add response to array
12-12 15:33:52.244: I/Async_GetAllTechSched(14998): pre-intent setting
12-12 15:33:52.244: I/Async_GetAllTechSched(14998): post-intent setting
12-12 15:33:52.254: I/Async_GetAllTechSched(14998): dismiss progress
12-12 15:33:52.264: E/JavaBinder(14998): !!! FAILED BINDER TRANSACTION !!!
12-12 15:33:52.274: E/ViewRootImpl(14998): sendUserActionEvent() mView == null
実行中のコードは次のとおりです。
Log.i("Async_GetAllTechSched", "create soap object");
SoapObject request = new SoapObject(svc_NAMESPACE, svc_METHOD_NAME);
Log.i("Async_GetAllTechSched", "create envelope");
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(
SoapEnvelope.VER11);
envelope.dotNet = true;
envelope.setOutputSoapObject(request);
Log.i("Async_GetAllTechSched", "create transport");
HttpTransportSE androidHttpTransport = new HttpTransportSE(svc_URL);
androidHttpTransport.debug = true;
try {
androidHttpTransport.call(svc_SOAP_ACTION, envelope);
Log.i("Async_GetAllTechSched", "pre SOAP response");
// use SoapObject instead of SoapPrimitave
SoapObject response = (SoapObject) envelope.getResponse();
Log.i("Async_GetAllTechSched", "post SOAP response");
// get the count of the objects returned
int cnt = response.getPropertyCount();
Log.i("Async_GetAllTechSched", "PRE - add response to array");
// loop through returned object and pull out the strings
for (int i = 0; i < cnt; i++) {
// there should always be at least one return value
sResponse.add(response.getProperty(i).toString());
}
Log.i("Async_GetAllTechSched", "POST - add response to array");
} catch (Exception e) {
e.printStackTrace();
Log.e("!!ERROR!!", e.getMessage());
}
// Log.i("return in async", "*********");
return sResponse;
}
@Override
protected void onPostExecute(ArrayList<String> result) {
ArrayList<String> arrAllTechSchedule = new ArrayList<String>();
// get the count prior to the for loop
int iCnt = result.size();
//add the result of the web service call to the main scheduling page
for (int i = 0; i < iCnt; i++) {
//Log.i("i = ", Integer.toString(i));
//add the data to a ArrayList so we can add that to the adapter
arrAllTechSchedule.add(result.get(i).toString());
}
// lets launch the main schedule windows
Log.i("Async_GetAllTechSched", "pre-intent setting");
Intent intent = new Intent(_Context, ScheduleSelectTech.class);
intent.putStringArrayListExtra("arrAllTechSchedule", arrAllTechSchedule);
intent.putExtra("mode", "READ-ONLY");
Log.i("Async_GetAllTechSched", "post-intent setting");
// terminate the progress bar
progress.dismiss();
Log.i("Async_GetAllTechSched", "dismiss progress");
//launch the new form
_Context.startActivity(intent);
}
インテントが開始されると、新しいアクティビティには到達しません。onCreate に LOG.i があり、ヒットすることはありません。プロシージャ コールはタイムアウトしません。返されるデータが少ないこの同じコードを試しても、エラーは発生しません。つまり、非同期タスクにデータを返すステートメントに SELECT TOP 100 を置くと、まったく問題ありません。
私の質問はこれだと思います-返されるデータが1MB未満の場合、なぜこれがエラーになるのですか? 1MB の制限が原因である場合、この制限を回避するか、返されるデータを何らかの方法で圧縮するために他にできることはありますか?
意図した設計は、この最初の呼び出しが名前とそれらの名前に関連付けられた予定を戻すことです (パイプで区切られています)。スピナーに名前だけの個別のリストを表示します (arraylist から取得)。ユーザーがスピナーの名前をクリックすると、その名前に関連付けられたすべての予定を表示する新しいアクティビティが開始されます (すべてのデータは最初の arraylist から取得されます)。すべてのデータは最初の非同期タスクで収集され、操作されています。これは、Web コールの量を減らすために行われました。このタスクは 2 つの Web サービス呼び出しで実行できるので、それが答えであれば問題ありません。Web サービス呼び出しを制限し、ユーザーの待ち時間を短縮できるように、別の方法やより良い方法があればいいのにと思っていました。