我正在尝试在Azure移动服务上调用自定义API。我已经从我的应用程序成功完成了这项工作,所以我知道我已经正确设置了它。但是在这种情况下,我从移动服务SDK中获得了空指针异常,因此我无法准确地跟踪它发生的原因。 (使用移动服务1.1.5 for Android)
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输出中。我完全不知道为什么会这样。
答案 0 :(得分:0)
基于堆栈跟踪,它看起来像Android SDK中的一个错误(处理204个响应 - 没有响应内容)。我猜想要解决此问题,您可以将状态代码从204更改为200。
您可以针对此问题在https://github.com/Azure/azure-mobile-services/issues处提交错误。根据您的评论,似乎只能针对200个响应正确解析响应,而其他响应可能包含更多数据。请注意,使用204意味着没有响应主体(根据定义 - 请参阅http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.2.4),但您应该能够使用其他成功的状态代码访问响应。
答案 1 :(得分:0)
我的GET请求现在遇到同样的问题。在OnSuccess()上执行方法断点,该断点始终为null。
REST测试程序工作并接收有效的json。使用express 4并尝试了多种返回方法,包括将响应代码更改为200.