-1

我们现在正在将我们的应用程序部署到生产环境中。但是出现了速率控制的问题?我们如何解决这个问题?任何步骤都可以解决这个问题。问题是使用一个使用 java.util 的适配器连接到 ***。我们收到来自 ipad 设备的错误。

 <Warning>: DEBUG: Submitting credentials to Worklight
 <Warning>: DEBUG: Checking for authRequired attribute in responseJSON
 <Warning>: DEBUG: authRequired attribute is present in responseJSON true
 <Warning>: DEBUG: authrequired === true? true
 <Warning>: DEBUG: authRequired is true, calling onShowLogin
 <Warning>: DEBUG: do login [object Object]
 <Error>: HID: The 'Rate Controlled' connection 'appme' access to protected services is denied.
 <Warning>: void SendDelegateMessage(NSInvocation *): delegate (webView:runJavaScriptAlertPanelWithMessage:initiatedByFrame:) failed to return after waiting 10 seconds. main run loop mode: kCFRunLoopDefaultMode
 <Warning>: ERROR: Failed to submit credentials to worklight

我们正在获取 *** 的凭据。适配器使用 jars 和 java 类来访问凭证。

4

1 回答 1

0

似乎与 MobileFirst 平台无关。

通读这些线程,因为看起来您在这里编写了一些涉及的本机代码:

https://discussions.apple.com/thread/6074570
http://forums.coronalabs.com/topic/47830-hid-the-passive-connection-appname-access-to-protected-services-is-denied/

从这些线程看来,真正的问题不是“HID ...访问被拒绝”,而是代码中影响网络请求的其他问题。

请注意,您还要打印“[object object]”...

如果这在开发环境中有效,但在您的生产环境中无效,那么您确实需要验证您的网络是否存在任何可能导致延迟或阻止请求的潜在问题。

于 2015-03-04T11:19:25.083 回答