Tagged Questions

0
votes
2answers
159 views

Workaround for PHP SOAP request failure when wsdl defines service port binding as https and port 80?

I am consuming a SOAP web service using php5's soap extension. The service' wsdl was generated using Axis java2wsdl, and whatever options are used during generation result in the …
1
vote
2answers
85 views

How to generate a PHP soap client code?

Is there a way to generate a PHP soap client from a wsdl file? I mean something like wsdl.exe or svcutil.exe in .net, that generates code for a class that can be the client of a se …
1
vote
2answers
120 views

Inspect XML created by PHP SoapClient call before/without sending the request

The question: Is there a way to view the XML that would be created with a PHP SoapClient function call BEFORE you actually send the request? background: I am new to WSDL communic …
0
votes
0answers
8 views

Soap Web Service PHP help

hi Stackoverflow, This is my first post!! Is it possible to send a complexType to a SOAP web service by creating the complexType locally, i.e. create the type by creating a class …
0
votes
1answer
80 views

SoapClient save request to file instead of sending it

Is there a way to save the soap request SoapClient sends when calling __soapCall to a file instead of sending it to the actual server? I'm trying to save the soap requests to a qu …