Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:27096 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 85013 invoked by uid 1010); 19 Dec 2006 12:15:42 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 84998 invoked from network); 19 Dec 2006 12:15:42 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 19 Dec 2006 12:15:42 -0000 Authentication-Results: pb1.pair.com header.from=mls@pooteeweet.org; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=mls@pooteeweet.org; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain pooteeweet.org from 83.97.120.92 cause and error) X-PHP-List-Original-Sender: mls@pooteeweet.org X-Host-Fingerprint: 83.97.120.92 mail-out-03.swisscom-eurospot.com Linux 2.5 (sometimes 2.4) (4) Received: from [83.97.120.92] ([83.97.120.92:60836] helo=safetwo.sceur.ch) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id BC/C1-05058-8A7D7854 for ; Tue, 19 Dec 2006 07:15:07 -0500 Received: from [127.0.0.1] (unknown [217.193.145.242]) by safetwo.sceur.ch (Postfix) with ESMTP id 026E6AA32F for ; Tue, 19 Dec 2006 09:12:13 +0000 (UTC) Message-ID: <4587ACEA.30103@pooteeweet.org> Date: Tue, 19 Dec 2006 10:12:10 +0100 User-Agent: Thunderbird 1.5.0.8 (Windows/20061025) MIME-Version: 1.0 To: PHP Developers Mailing List Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: ext/soap ctor errors From: mls@pooteeweet.org (Lukas Kahwe Smith) Hi, why do I get warnings when I have failures in my ext/soap ctor? try { $client = new SoapClient('http://i_dont_exist.com/some.wsdl', array('exceptions' => true)); } catch (Exception $e) { } I guess even without the 'exceptions' => true it should always return all issues as an exception. I think this was agreed upon for constructor errors in PHP5, no? regards, Lukas