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??