gpt4 book ai didi

java - Apache Wink 连接到 https 资源

转载 作者:行者123 更新时间:2023-11-29 08:55:14 24 4
gpt4 key购买 nike

我从 Apache Wink Web 服务向位于云中的外部资源(我无法将证书放入 JVM)发送请求,我知道当我尝试从浏览器发出请求时,我得到正确答案。

String serviceURL = "https://someurl&ciUser=user&ciPassword=password";

ClientConfig clientConfig = new ClientConfig();
clientConfig.setBypassHostnameVerification(true);

RestClient client = new RestClient(clientConfig);

Resource resource = client.resource(serviceURL);

但我得到以下异常:

[err] org.apache.wink.client.ClientRuntimeException: java.lang.RuntimeException: javax.net.ssl.SSLHandshakeException: Remote host closed connection during handshake
[err] at org.apache.wink.client.internal.ResourceImpl.invoke(ResourceImpl.java:240)
[err] at org.apache.wink.client.internal.ResourceImpl.invoke(ResourceImpl.java:189)
[err] at org.apache.wink.client.internal.ResourceImpl.get(ResourceImpl.java:302)

更新

我也试过这个但是得到了同样的错误

String serviceURL = "https://url&ciUser=user&ciPassword=password";

//Perform basic http auth
ClientConfig clientConfig = new ClientConfig();
BasicAuthSecurityHandler basicAuthSecurityHandler = new BasicAuthSecurityHandler("user", "password");
clientConfig.handlers(basicAuthSecurityHandler);

RestClient client = new RestClient(clientConfig);

有没有可能解决这个问题?

最佳答案

尝试以下步骤

  1. 使用我导出的 jks 文件通过 https 运行应用程序。

  2. 使用浏览器查看证书。

  3. 导出并保存到.cer文件

  4. 使用 java keytool 导入它。

这是命令:

keytool -import -trustcacerts -alias localhost -keystore "%JAVA_HOME%/jre/lib/security/cacerts" -file "D:/apache tomcat 6/bin/example.cer"

关于java - Apache Wink 连接到 https 资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20611426/

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