0

我正在尝试在我的 Worklight 项目中实现基本身份验证。

我在适配器 xml 中设置了以下代码。

    <authentication>
        <basic/>
        <serverIdentity>
        <username>admin</username>
        <password>admin</password>
        </serverIdentity>
    </authentication>

我所有的程序都必须有这个基本的身份验证,所以我这样设置我的程序:

    <procedure connectAs="server" name="getClass">
    <displayName>getClass</displayName>
    <description>Retrieves classdetails by id</description>
</procedure>

实施此操作时出现以下错误:

    FWLSE0101E: Caused by:  [project Klappr]java.io.IOException: Unexpected character '<' on line 1, column 1 
                                                                                                           com.worklight.common.log.filters.ErrorFilter

当我不实现它时,我会收到 401 错误,因为没有给出身份验证对象。

    [11:26:43.403] "Transfer failed, errors = Runtime: Failed to parse JSON string
    Error 401: An Authentication object was not found in the SecurityContext"

如何将其模拟为用户名“admin”、密码“admin”,而不是之前实施整个 Worklight 安全性?

有关基本身份验证的信息:

    http://pic.dhe.ibm.com/infocenter/wrklight/v5r0m5/index.jsp?topic=/com.ibm.worklight.help.doc/devref/r_the__authentication__element_o.html
4

1 回答 1

0

适配器用于连接到后端。在 WL 适配器中使用身份验证意味着您的后端需要基本身份验证。

您收到错误消息是因为您指定了 returnedContentType:"json" 并且您的后端返回 XML/HTML。将returnedContentType 设置为“plain”以查看您的后端响应。

于 2013-11-07T11:04:48.627 回答