4nd*_*o1d 8 android azure azure-mobile-services
我正在尝试使用Azure构建一个Application offline sync并遵循该教程
现在offline storage效果很好,但没有项目添加到服务器上,但有以下异常:
Error syncAsync com.microsoft.windowsazure.mobileservices.table.sync.push.MobileServicePushFailedException
java.util.concurrent.ExecutionException: com.microsoft.windowsazure.mobileservices.table.sync.push.MobileServicePushFailedException
at com.google.common.util.concurrent.AbstractFuture$Sync.getValue(AbstractFuture.java:299)
at com.google.common.util.concurrent.AbstractFuture$Sync.get(AbstractFuture.java:286)
at com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:116)
at irisrecognition.example.com.irisrecognition.util.ItemManager$5.doInBackground(ItemManager.java:237)
at irisrecognition.example.com.irisrecognition.util.ItemManager$5.doInBackground(ItemManager.java:232)
at android.os.AsyncTask$2.call(AsyncTask.java:288)
at java.util.concurrent.FutureTask.run(FutureTask.java:237)
at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:231)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
at java.lang.Thread.run(Thread.java:818)
Caused by: com.microsoft.windowsazure.mobileservices.table.sync.push.MobileServicePushFailedException
at com.microsoft.windowsazure.mobileservices.table.sync.MobileServiceSyncContext.pushOperations(MobileServiceSyncContext.java:939)
at com.microsoft.windowsazure.mobileservices.table.sync.MobileServiceSyncContext.consumePushSR(MobileServiceSyncContext.java:834)
at com.microsoft.windowsazure.mobileservices.table.sync.MobileServiceSyncContext.access$1100(MobileServiceSyncContext.java:85)
at com.microsoft.windowsazure.mobileservices.table.sync.MobileServiceSyncContext$PushSyncRequestConsumer.run(MobileServiceSyncContext.java:1127)
Run Code Online (Sandbox Code Playgroud)
这是代码 onCreate()
try {
mClient = new MobileServiceClient(
Constants.ROOT_URL,
"kfogvaexzeDLYyPbRmBiHxQEBUYpku30",
this).withFilter(new ProgressFilter());
initLocalStore().get();
syncAsync();
refreshItemsFromTable();
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
Run Code Online (Sandbox Code Playgroud)
还有一些......
private AsyncTask<Void, Void, Void> initLocalStore() throws MobileServiceLocalStoreException, ExecutionException, InterruptedException {
AsyncTask<Void, Void, Void> task = new AsyncTask<Void, Void, Void>() {
@Override
protected Void doInBackground(Void... params) {
try {
mPullQuery = mClient.getTable(IrisEntry.class).where().orderBy("__createdAt", QueryOrder.Descending);
MobileServiceSyncContext syncContext = mClient.getSyncContext();
SQLiteLocalStore localStore = new SQLiteLocalStore(mClient.getContext(), "OfflineStore", null, 1);
SimpleSyncHandler handler = new SimpleSyncHandler();
Map<String, ColumnDataType> tableDefinition = new HashMap<String, ColumnDataType>();
tableDefinition.put("id", ColumnDataType.String);
tableDefinition.put("text", ColumnDataType.String);
tableDefinition.put("device", ColumnDataType.String);
tableDefinition.put("segmentationAlgo", ColumnDataType.String);
tableDefinition.put("imageUri", ColumnDataType.String);
tableDefinition.put("containerName", ColumnDataType.String);
tableDefinition.put("resourceName", ColumnDataType.String);
tableDefinition.put("sasQueryString", ColumnDataType.String);
tableDefinition.put("userId", ColumnDataType.String);
tableDefinition.put("complete", ColumnDataType.Boolean);
localStore.defineTable(Constants.TABLE_IRIS, tableDefinition);
syncContext.initialize(localStore, handler).get();
mIrisTable = mClient.getSyncTable(IrisEntry.class);
} catch (final Exception e) {
e.printStackTrace();
}
return null;
}
};
return runAsyncTask(task);
}
public void syncAsync() {
if (isNetworkAvailable()) {
new AsyncTask<Void, Void, Void>() {
@Override
protected Void doInBackground(Void... params) {
try {
mClient.getSyncContext().push().get();
mIrisTable.pull(mPullQuery).get();
Log.e(LOGTAG, "Success syncAsync");
} catch (Exception e) {
Log.e(LOGTAG, "Error syncAsync " + e.getMessage());
e.printStackTrace();
}
return null;
}
}.execute();
} else {
Log.e(LOGTAG, "You are not online, re-sync later!");
}
}
private boolean isNetworkAvailable() {
ConnectivityManager connectivityManager
= (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo activeNetworkInfo = connectivityManager.getActiveNetworkInfo();
return activeNetworkInfo != null && activeNetworkInfo.isConnected();
}
Run Code Online (Sandbox Code Playgroud)
我的表的权限设置为允许Application Key.有任何想法吗?
编辑:
这将显示在服务器上的日志文件中:
ERROR
{ [Error: getaddrinfo ENOTFOUND] code: 'ENOTFOUND', errno: 'ENOTFOUND', syscall: 'getaddrinfo' }
Run Code Online (Sandbox Code Playgroud)
小智 0
我不确定这是否是答案,但“Constants.ROOT_URL”是否包含像“ http://myurl.com ”这样的协议标头字符串?ENOTFOUND 错误意味着 getaddrinfo 调用的地址无法解析。您可能想尝试“myurl.com”,不带 URI 的协议部分。该方法还需要一个类类型 Uri 作为参数。看起来您可能正在从 MalformedURIException 处理程序获取堆栈跟踪。(即使您指定了其他内容,该调用也可能使用 https)。
| 归档时间: |
|
| 查看次数: |
583 次 |
| 最近记录: |