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 queue and then send them over a period of time (the requests will be very different).

I'm using Zend_Soap.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Take a look at Zend_Soap_Client_Local, especially the _doRequest() method and build your own class with your own logic.

If you want so see how they used Zend_Soap_Client_Local, take a look in tests/Zend/Soap/ClientTest.php, method testGetFunctions().

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.