Worklight 6.1,在 Mac 上的 WL Studio 中进行测试。
作为这个关于在 Worklight Server 中进行后台工作的问题的后续,可接受的答案是使用事件源。
WL.Server.createEventSource(
{
name: "housekeepingEventSource",
poll: {
interval: 5,
onPoll: workToBeDone
},
securityTest: "eventTest"
}
);
问题涉及使用哪种安全测试。无论我尝试什么,我都会收到此错误:
适配器部署失败: Wrapped java.lang.ClassCastException: org.mozilla.javascript.gen._ (... elisions ...) _chmSecurityService_impl_js_83 cannot be cast to java.lang.String (/integration.js#258)
参考这个问题
我已经使用了这个安全测试:
<mobileSecurityTest name="eventTest">
<testUser realm="wl_anonymousUserRealm"/>
<testDeviceId provisioningType="none"/>
</mobileSecurityTest>
请提示...