[PHP] Overriding __soapCall

2005-07-14 Thread Marcus Bointon
I'm working on a soap client in PHP5, which I'm building by subclassing the built-in SoapClient class. However, it seems my overridden __soapCall method is never being called. My class looks something like this: class myClient extends SoapClient { public function __construct($wsdl =

Re: [PHP] Overriding __soapCall

2005-07-14 Thread Marcus Bointon
On 14 Jul 2005, at 16:07, Marcus Bointon wrote: I've found various references to overriding the __call function (which is now completely obsolete as it clashes with a magic method) for the same kind of reason that I need to. So, it seems as if __soapCall is NOT called internally when