Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:12679 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 92457 invoked by uid 1010); 9 Sep 2004 17:04:55 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 89390 invoked from network); 9 Sep 2004 17:03:59 -0000 Received: from unknown (HELO jan.prima.de) (83.97.50.139) by pb1.pair.com with SMTP; 9 Sep 2004 17:03:59 -0000 Received: from BAUMBART (p508EA997.dip.t-dialin.net [::ffff:80.142.169.151]) (IDENT: HydraIRC, AUTH: LOGIN tobi) by jan.prima.de with esmtp; Thu, 09 Sep 2004 17:03:57 +0000 Date: Thu, 9 Sep 2004 19:03:55 +0200 Reply-To: Marcus Boerger X-Priority: 3 (Normal) Message-ID: <75252583.20040909190355@marcus-boerger.de> To: Dmitry Stogov CC: internals@lists.php.net In-Reply-To: <002001c49685$f2bac640$0a02a8c0@w2k> References: <1774206462.20040909122200@marcus-boerger.de> <002001c49685$f2bac640$0a02a8c0@w2k> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] SOAP's __call From: helly@php.net (Marcus Boerger) Hello Dmitry, Thursday, September 9, 2004, 5:59:11 PM, you wrote: > Hi Marcus, > Can you explain for what reason you changed prototype of the > SoapClient::__call? > This broke receiving of SOAP headers. __call() is an engine feature that requires either three (PHP 4) or exactly 2 (PHP 5) parameters. If you need a more complex function then you need to provide a separate function and probably map both the new and _call onto a combined implementation. best regards marcus