I have a server that only offers a wsHttpBinding web service and need to use it from PHP.
The standard SoapClient doesn’t work with it, giving the following error:
http://www.w3.org/2005/08/addressing/faults:Sendera:ActionMismatch The SOAP action specified on the message, ”, does not match the HTTP SOAP Action, ‘http://tempuri.org/ICategoryApi/Tree‘. a:Action
Is there some PHP SoapClient implementation or setting that supports wsHttpBinding?
I discovered that the server has the basicHttpBinding mode too, but the methods have same names in both the binding modes.
The problem persisted because the PHP default client seems to not allow to differencing between them, implementing overloading, since it calls the method by name and goes to the first matching (the wsHttpBinding one).
I solved this by using nusoap for addressing the right method (it does this task good).