vote up 0 vote down star

I'm Using PHP 5 and the built-in SoapClient.
This is really a question for the developers of PHP Soap support.

The SoapClient gives you 2 choices: WSDL mode, which caches the WSDL file locally, and non-WSDL which requires you to build your own requests.

Using the WSDL is obviously more convenient. But, I wonder how much processing this does each time you create a SoapClient instance. The WSDL is cached, but does it have to re-process the entire WSDL each time you create a SoapClient? If so, it seems it might be more efficient (CPU-wise) to go the non-WSDL route.

It's no problem to create the non-WSDL SoapClient in my situation. Should I?

-Dave

flag

Does testing in your particular case result in performance gains that outweigh the overhead associated with creating non-WSDL connections? – Michael Todd Jun 16 at 15:28
I haven't done any performance testing because I haven't implemented the non-WSDL case yet. I'm hoping someone else has either done the testing (and wants to share) or knows the implementation well enough to answer. – Dave C Jun 16 at 17:03
Fair enough ("All of us are smarter than one of us," as they say). Looks a little dreary for other responses, though. Good luck. – Michael Todd Jun 16 at 20:40

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.