Avatar

Level 2

I'm with you i 'm having a problem with https too. Mine is a wsdl webservice thru https wsdl connection. I'm using this function to do the SOAPconnect:

function fn_getInfoMaq(strCallWS)

{

    var URLEntorn = "https://11.11.11.111:8443/tmaq/AppJava/services/tmaqWebService?wsdl";

    var service = Net.SOAP.connect(URLEntorn);
   
    var request =
    {
        soapType: "xsd:string",
        soapValue: strCallWS
    };
          
    var params = {datos:request};


    var result = service.methodName(params);
   
    return result;
}

If URL is http is working fine, but when i tried a https it did not connect.

Maybe this helps us to reach a clever solution