Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Can't connect to a webservice https (SOAP)

Avatar

Level 2

Hello, i've been problems to connect 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.

Any idea?  Thankyou

P.S. Maybe is a SSL problem??

0 Replies