As per the title, is it possible to output the XML that a new SoapClient has created before trying to run a __soapCall() to ensure it’s correct before actually sending it to the SOAP server?
As per the title, is it possible to output the XML that a new
Share
You could use a derived class and overwrite the __doRequest() method of the SoapClient class.
prints
But you’d have to change the actual code a bit for this to work which I try to avoid when possible (i.e. let tools do the work).