My customer has a PHP web service, that they want me to use. It's PHP-based, while my web is ASP-based.
The ASP code looks like this:
Dim soapclient
WSDL_URL = "http://xxx.xxxx.xx/index.php?Action=service"
set soapclient = Server.CreateObject("MSSOAP.SoapClient30")
soapclient.ClientProperty("ServerHTTPRequest") = True
on error resume next
soapclient.mssoapinit WSDL_URL ' error here
Is ASP able to call a PHP-based soap service?
or
What should I adjust?
Thanks a lot!