gpt4 book ai didi

java - 如何使用 jax-ws 正确构建端点?

转载 作者:太空宇宙 更新时间:2023-11-03 13:38:48 25 4
gpt4 key购买 nike

我正在使用 Bootstrap 方法通过使 WSDL 在本地可用来动态构建我的端点。对于 http 和 https,但我很确定我在为 https 构建它们时出错了。

Map<String, Object> context = ((BindingProvider)control).getRequestContext();
URL address = mInstance.getConnectionEndpoint();
if (address != null && Settings.getSettings().isUsingHttpConnection()) {
context.put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,address.toString());
System.out.println(address);
}
else{
//for https

HttpsURLConnection.setDefaultHostnameVerifier(new HostnameVerifier()
{
public boolean verify(String hostname, SSLSession session)
{
if (hostname.equals("myhostname"))
return true;
return false;
}
});

address = mInstance.getSecureConnectionEndpoint();
context.put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,address.toString());
}

getConnectionEndpoint 和 getSecureConnectionEndpoint 看起来像:

   public URL getConnectionEndpoint() {
URL url = null;
try {
int port = 50013;
url = new URL("http", mHost.getHostAddress(), port, "");
} catch (MalformedURLException e) {
e.printStackTrace();
}
return url;
}

public URL getSecureConnectionEndpoint() {
URL url = null;
try {
int port = 50014;
url = new URL("https", mHost.getHostAddress(), port, "");
} catch (MalformedURLException e) {
e.printStackTrace();
}
return url;
}

这在我使用 http 时工作正常。但是对于 https,我总是会得到这样的错误:

com.sun.xml.internal.ws.client.ClientTransportException: HTTP transport error: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: No subject alternative names present

很明显,通过谷歌搜索这个错误,我找到了答案,这可能是由于在 Java TrustStore 中不正确地导入了服务器和客户端 SSL 证书。

但我非常有信心问题不在于此。

上面提到的父错误的子错误看起来像这样:

at sun.security.ssl.SSLSocketImpl.startHandshake(Unknown Source)
at sun.security.ssl.SSLSocketImpl.startHandshake(Unknown Source)
at sun.net.www.protocol.https.HttpsURLConnectionImpl.getOutputStream(Unknown Source)

如果你能帮我解决这个问题,我将不胜感激!提前干杯。

最佳答案

问题很可能是 mHost.getHostAddress() 返回的值与 common name 不同的主机名在服务器提供的证书上。例如,如果 localhostmHost.getHostAddress() 的值,但 SSL 证书颁发给 127.0.0.1(反之亦然) ) 你可能会遇到这个问题。

This post确定代码解决方法,以防使用不同的 CN 重新生成和重新安装证书不可行或不可取。它涉及使用 HostnameVerifier HttpsUrlConnection的机理.

关于java - 如何使用 jax-ws 正确构建端点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31567126/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com