摘要:
在开发https应用时,你的测试服务器常常没有一个(有效的)SSL证书。在你的客户端连接测试服务器时,如下的异常会被抛出:”javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated”。我将讨论使用Apache HttpClient时,解决该问题的一种方法(http://hc.apache.org/httpcomponents-client/)。1. 代码片段通常,你会像下面那样来创建HttpClient:this.client = new DefaultHttpClient();我们将需要告诉client使用一个不同的Tr 阅读全文