我正嘗試在Azure移動服務上調用自定義API。我已經從我的應用程序成功完成了這個工作,所以我知道我已經正確設置了它。但是,在這種情況下,我在移動服務SDK中收到了空指針異常,所以我無法準確追蹤它發生的原因。 (使用適用於Android的移動服務1.1.5)Android Azure invokeApi獲取空指針異常
來自Azure的日誌表明服務器腳本正在成功運行。下面是腳本代碼多數民衆贊成在返回數據的片段:
} else {
console.log("no match");
response.send(204, results); //No Match
}
下面是我的Android應用程序的invokeApi代碼:
mClient.invokeApi("data/check","GET",params,new ApiJsonOperationCallback() {
@Override
public void onCompleted(JsonElement jsonObject, Exception exception, ServiceFilterResponse response) {
Logg.d("onCompleted called successfully");
if (exception != null) {
if (response.getStatus().getStatusCode() == RESULT_OK) { //Item Already Exists
Logg.d("Match! Item Already Exists.");
} else if (response.getStatus().getStatusCode() == 206) { //Chain Match or partial chain match
Logg.d("Chain Match or partial Chain Match");
} else if (response.getStatus().getStatusCode() == 204) { //No match, request ok
Logg.d("No match found");
} else {
Logg.e("Azure exception: " + exception.getCause().getMessage());
result = RESULT_CANCELED;
}
}
}
});
而這裏的錯誤堆棧:
12-27 08:39:21.497 13234-13234/com.farmsoft.lunchguru.app.debug W/dalvikvm﹕ threadid=1: thread exiting with uncaught exception (group=0x417b3da0)
12-27 08:39:21.537 13234-13234/com.farmsoft.lunchguru.app.debug E/AndroidRuntime﹕ FATAL EXCEPTION: main
Process: com.farmsoft.lunchguru.app.debug, PID: 13234
java.lang.NullPointerException
at java.io.StringReader.<init>(StringReader.java:47)
at com.google.gson.JsonParser.parse(JsonParser.java:45)
at com.microsoft.windowsazure.mobileservices.MobileServiceClient$5.onResponse(MobileServiceClient.java:708)
at com.microsoft.windowsazure.mobileservices.MobileServiceClient$6.onPostExecute(MobileServiceClient.java:825)
at com.microsoft.windowsazure.mobileservices.MobileServiceClient$6.onPostExecute(MobileServiceClient.java:1)
at android.os.AsyncTask.finish(AsyncTask.java:632)
at android.os.AsyncTask.access$600(AsyncTask.java:177)
at android.os.AsyncTask$InternalHandler.handleMessage(AsyncTask.java:645)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:146)
at android.app.ActivityThread.main(ActivityThread.java:5487)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1283)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1099)
at dalvik.system.NativeStart.main(Native Method)
看來,錯誤正在發生之前 onCompleted被調用,因爲Log調用未反映在logcat輸出中。我完全不知道爲什麼會出現這種情況。
基於堆棧跟蹤,它看起來像是Android SDK中的一個錯誤(處理204個響應 - 沒有響應內容)。我猜想要解決這個問題,你可以將狀態碼從204改爲200. – carlosfigueira 2014-12-28 05:44:45
嗯 - 切換到200讓它運行沒有錯誤,儘管我希望使用狀態碼來嚮應用程序傳達結果類型被發現(或不)。謝謝!你想補充說,作爲答案?是否有地方向Azure報告錯誤?順便說一句,我已經在Azure上取得了成功,這是因爲你的博客,所以我非常感謝你! – Scott 2014-12-28 15:17:01
我發現Azure在使用非標準狀態碼(如821)時不會返回錯誤,儘管響應內容不會通過jsonObject參數傳遞。我可以通過response.getContent()手動訪問它,這可能是一種可行的解決方法。 – Scott 2014-12-28 16:19:53