J
John.Dev
Hi,
i want to call a WebService over HTTPS. The call over HTTP works fine.
It fails already on the MSSoapInit method call, with a security problem error.
Here is my code:
Set ws = CreateObject("MSOSOAP.SoapClient30")
ws.MSSoapInit "https://localhost:443/xyz/nomination?wsdl"
' ws.MSSoapInit "http://localhost:8080/xyz/nomination?wsdl" <-- THIS works
ws.echo("Hello")
I have found some forum records. It describes something with:
ws.ConnectorProperty("AuthUser") = "user"
ws.ConnectorProperty("AuthPassword") = "pass"
but first, my certificat don't needs User/Password and second if i try to
put this lines before the ws.MSSoapInit call i get an error like - the object
ws is not initialized.
I hope somebody can help me.
John
i want to call a WebService over HTTPS. The call over HTTP works fine.
It fails already on the MSSoapInit method call, with a security problem error.
Here is my code:
Set ws = CreateObject("MSOSOAP.SoapClient30")
ws.MSSoapInit "https://localhost:443/xyz/nomination?wsdl"
' ws.MSSoapInit "http://localhost:8080/xyz/nomination?wsdl" <-- THIS works
ws.echo("Hello")
I have found some forum records. It describes something with:
ws.ConnectorProperty("AuthUser") = "user"
ws.ConnectorProperty("AuthPassword") = "pass"
but first, my certificat don't needs User/Password and second if i try to
put this lines before the ws.MSSoapInit call i get an error like - the object
ws is not initialized.
I hope somebody can help me.
John