【发布时间】:2015-04-19 13:06:00
【问题描述】:
我正在尝试使用部署在 WebSphere 中的 Java REST Web 服务。 我收到错误 500:java.lang.RuntimeException:javax.net.ssl.SSLHandshakeException:收到致命警报:handshake_failure。
如何解决此错误。
function postAjax() {
var dataTemp=JSON.stringify({userName: "xxxxxx",password: "xxxxxx",feedUrl: "xxxxxx"});
$.ajax({
url:'http://domain-name:9080/Context/service/myService',
type:'post',
contentType: 'application/json',
dataType: 'json',
data: dataTemp,
success: function(data) {
}
});
}
【问题讨论】:
标签: java html websphere restful-url