我正在尝试在我的 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