7

我的 android 项目正在使用 api 15。我正在使用 HttpsURLConnection 类通过 https 连接到服务器。在 WiFi 上一切正常,但如果我关闭 WiFi 并运行超过 3g,我会得到以下信息:

javax.net.ssl.SSLHandshakeException: java.security.cert.CertPathValidatorException: Trust anchor for certification path not found.       at org.apache.harmony.xnet.provider.jsse.OpenSSLSocketImpl.startHandshake(OpenSSLSocketImpl.java:413)
   at org.apache.harmony.xnet.provider.jsse.OpenSSLSocketImpl.startHandshake(OpenSSLSocketImpl.java:257)       at libcore.net.http.HttpConnection.setupSecureSocket(HttpConnection.java:210)
   at libcore.net.http.HttpsURLConnectionImpl$HttpsEngine.makeSslConnection(HttpsURLConnectionImpl.java:477)
   at libcore.net.http.HttpsURLConnectionImpl$HttpsEngine.connect(HttpsURLConnectionImpl.java:432)
   at libcore.net.http.HttpEngine.sendSocketRequest(HttpEngine.java:282)
   at libcore.net.http.HttpEngine.sendRequest(HttpEngine.java:232)       at libcore.net.http.HttpURLConnectionImpl.connect(HttpURLConnectionImpl.java:80)
   at libcore.net.http.HttpURLConnectionImpl.getOutputStream(HttpURLConnectionImpl.java:188)       at libcore.net.http.HttpsURLConnectionImpl.getOutputStream(HttpsURLConnectionImpl.java:280)

如果我做错了什么,为什么它可以通过 WiFi 工作?

这里有更多信息。

如果我使用 openssl 查看服务器证书信息,

echo | openssl s_client -connect myserver.com:443

返回服务器级别的自签名证书,而

echo | openssl s_client -connect myserver.com:443 -servername myserver.com

返回“正确”的证书。我的服务器上有多个虚拟主机,每个虚拟主机都有自己的 rapidssl 颁发的证书,所以我“认为”这意味着我需要使用启用 TLS 的客户端。至少这是我对我在 Apache 启动日志中看到的消息的解释:

Name-based SSL virtual hosts only work for clients with TLS server name indication support

如果到目前为止我是正确的,这是否意味着我的移动 3g 网络可能与 TLS 发生冲突,或者我应该做些什么?

可以通过继承 DefaultHttpClient 并导入包含服务器自签名证书的密钥库来让事情超过 3g,但这绝对不是我的首选。

4

1 回答 1

0

添加-servername选项只是设置消息中的Server Name Indication字段,Client Hello如果目标主机包含许多,这有助于我们选择正确的证书,就像您的情况一样。但是,它与问题无关。

在 SSL 握手期间,证书以主题/颁发者对的形式交付,形成证书链。

google.com证书链如下所示:

openssl s_client -connect google.com:443
CONNECTED(00000003)
depth=2 C = US, O = GeoTrust Inc., CN = GeoTrust Global CA
verify error:num=20:unable to get local issuer certificate
verify return:0
---
Certificate chain
 0 s:/C=US/ST=California/L=Mountain View/O=Google Inc/CN=*.google.com
   i:/C=US/O=Google Inc/CN=Google Internet Authority G2
 1 s:/C=US/O=Google Inc/CN=Google Internet Authority G2
   i:/C=US/O=GeoTrust Inc./CN=GeoTrust Global CA
 2 s:/C=US/O=GeoTrust Inc./CN=GeoTrust Global CA
   i:/C=US/O=Equifax/OU=Equifax Secure Certificate Authority
---

收到后,客户端会尝试从下到上(根)验证链中的所有发行者。如果客户端无法验证根证书, Trust anchor for certification path not found则会出现消息。

因此,回到 WiFi/3G 问题,您的移动网络的 DNS 可能无法解析证书链中的中间颁发者之一的地址。

更新:

您可以将颁发者的证书放入您的 APK 并TrustManager在您的代码中添加 via。这种方法可以克服接入网络的限制(如果有的话)。

于 2015-08-27T22:44:17.710 回答