I'm new to soap web service.I want to ping my server using https and i want to use soap.I referred the following links Not trusted certificate using ksoap2-android KSOAP 2 Android with HTTPS but,it doesn't worked in my code. here is my code snippet
SSLConection.allowAllSSL();
HttpsTransportSE httpstransport = new HttpsTransportSE("myserver", 443, "rmo_t_json_v2.asmx", 1000);
httpstransport.call(SOAP_ACTION, envelope);
Where I have to call allowssl()
. what is third param in httpstransportSE.