我正在为我的移动应用项目使用IBM worklight 6.1和backbone.js。我尝试调用适配器时收到此错误消息。
orders.xml中
<?xml version="1.0" encoding="UTF-8"?>
<wl:adapter name="Orders"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:wl="http://www.worklight.com/integration"
xmlns:http="http://www.worklight.com/integration/http">
<displayName>Orders</displayName>
<description>Orders</description>
<connectivity>
<connectionPolicy xsi:type="http:HTTPConnectionPolicyType">
<protocol>https</protocol>
<domain>izify.com</domain>
<port>443</port>
</connectionPolicy>
<loadConstraints maxConcurrentConnectionsPerNode="2" />
</connectivity>
<procedure name="getOrders"> </procedure>
</wl:adapter>
订单-impl.js
function getOrders() {
var input = {
method : 'get',
returnedContentType : 'json',
path : "api/izify-api/admin/get_all_orders.php",
parameters:{merchantId:"74718912a2c0d82feb2c14604efecb6d"}
};
return WL.Server.invokeHttp(input);
}
错误消息
{
"errors": [
"Runtime: Http request failed: javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated"
],
"info": [
],
"isSuccessful": false,
"warnings": [
]
}
提前多多感谢。
答案 0 :(得分:2)
我得到了问题的答案。
没有关于SSL的问题。
完成
答案 1 :(得分:1)
有时,当JVM不信任证书时会发生此异常。这是协商SSL / https连接时出现问题的几种症状之一。
有时,当远程服务器的SSL证书出现问题时会发生这种情况。但是,从我的角度来看,我无法使用未经修改的信任库来重新创建Oracle 1.7 JVM - 我可以检索https://izify.com/api/izify-api/admin/get_all_orders.php
并获得响应。
我还验证了3rd party certificate checker izify.com SSL证书没有问题(除了它很快就会过期,但现在几个月内不会出现问题)。请从您的结尾运行此操作,并确认他们解决的IP地址与您的IP地址相符。
然后,检查您的WL服务器对izify.com的HTTP请求是否未通过某种重定向或以其他方式中断SSL连接的代理(例如,Fiddler或开发代理)。
答案 2 :(得分:0)
我通过确保Eclipse指向Java 7而不是Java 6来解决了这个问题。