私はksoap2-androidを使用してSSL経由でwcfサービスを呼び出しています。私はそれがSSLなしで動作するようにすることができますが、今はSSL経由で電話をかけたいのですが、私はいくつかの問題に取り組んできました。ksoap2-androidを使用した信頼できない証明書
は私の代わりにHttpTransportSEのHttpsTransportSEを使用していますが、私はエラーを取得しています: javax.net.ssl.SSLException:信頼されていないサーバ証明書私はこの問題を解決するにはどうすればよい
を?
問題を解決するために、Androidのキーストアにサーバー証明書を追加できますか?
private static final String SOAP_ACTION = "http://example.com/Service/GetInformation";
private static final String METHOD_NAME = "GetInformation";
private static final String NAMESPACE = "http://example.com";
private static final String URL = "dev.example.com/Service.svc";
public static Result GetInformation()
{
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
PropertyInfo property = new PropertyInfo();
property.name = "request";
Request request =
new Request("12", "13", "Ben");
userInformationProperty.setValue(request);
userInformationProperty.setType(request.getClass());
request.addProperty(property);
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.dotNet = true;
envelope.setOutputSoapObject(request);
envelope.addMapping(NAMESPACE, "Request",new Request().getClass());
HttpsTransportSE transport = new HttpsTransportSE(URL, 443, "", 1000);
//HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);
transport.debug = true;
try
{
transport.call(SOAP_ACTION, envelope);
return Result.FromSoapResponse((SoapObject)envelope.getResponse());
}
catch (IOException e)
{
e.printStackTrace();
}
catch (XmlPullParserException e)
{
e.printStackTrace();
}
return null;
}
あなたの最初のソリューションを使用することは多少なりともno sslを使用することと同じです – Rafa