1

Worklight 6.0.0,针对 iPad。

我有一个简单的演示应用程序,目前没有身份验证。我正在演示反向代理的使用。因此,我正在使用Build for Remote Server 解决方法构建我的应用程序,并且可以在 xcode 中看到正确的服务器规范。我有一些适配器调用,但对于特定的演示场景,我还想显式调用

WL.Client.connect( ... );

如果我使用 http 连接,我会看到这样的请求:

http://192.168.0.19/MyApp/apps/services/api/Work01/ipad/init

它工作得很好。相反,如果我使用 SSL 连接,正如预期的那样,我会看到这个

https://192.168.0.19:443/Infrabel01/apps/services/api/Work01/ipad/init

我收到以下错误。

> [ERROR   ] FWLSE0059E: Login into realm 'NullLoginModule' failed. The
> environment 'ipad' supports multiple versions, therefore you must
> request it with a version parameter.. [project Infrabel01] The
> environment 'ipad' supports multiple versions, therefore you must
> request it with a version parameter. [ERROR   ] 
> FWLSE0117E: Error code: 4, error description: AUTHENTICATION_ERROR, 
> error message: An Error occurred while performing authentication using loginModule
> NullLoginModule, User Identity Not available. [project Infrabel01]
> [project Infrabel01]

“使用版本参数请求它”很有趣。我需要传递一些额外的参数吗?还是通过 SSL 连接需要身份验证的总体含义?

4

2 回答 2

2

我有同样的问题。

我已经通过在 WL 应用程序中使用服务器的真实 IP 地址而不是使用 localhost 来解决它:

  1. 当模拟器运行您的应用程序时,按菜单按钮。
  2. 选择更改您的服务器 URL
  3. 删除“localhost”并使用 IP 地址。
  4. 接受并重试。

这解决了我的问题。

于 2014-10-02T18:05:29.103 回答
0

请确保您的 Worklight 服务器或代理服务器已启用 SSL,并使用由 Verisign 等受信任的公共 CA 签署的证书。Worklight 不支持私有 CA 证书。

于 2013-09-04T08:26:02.037 回答