我有一个非常基本的Java网络服务调用...
public static String contactWebservice(){
DefaultHttpClient httpclient = new DefaultHttpClient();
HttpHost target = new HttpHost(“www.someurl.com”, 443, "https");
HttpGet getRequest = new HttpGet("PARAMETERS FOR WEBSERVICE");
HttpResponse httpResponse = httpclient.execute(target, getRequest);
…more code...
我需要将其转换为没有证书的SSL呼叫。就像浏览器联系ssl安全网页并获取数据而没有证书一样。我尝试了许多不同的方法,但到目前为止没有任何效果。我不断收到“对等人未通过身份验证”错误。