Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:13126 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 10735 invoked by uid 1010); 4 Oct 2004 07:46:03 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 10703 invoked from network); 4 Oct 2004 07:46:03 -0000 Received: from unknown (HELO promo.hnet.spb.ru) (81.211.117.132) by pb1.pair.com with SMTP; 4 Oct 2004 07:46:03 -0000 Received: from w2k (unknown [192.168.3.118]) by promo.hnet.spb.ru (Postfix) with ESMTP id E9A5C1BAC87; Mon, 4 Oct 2004 11:48:38 +0400 (MSD) To: "'Robert Janeczek'" , Date: Mon, 4 Oct 2004 11:48:58 +0400 Message-ID: <000301c4a9e6$9cb58310$0a02a8c0@w2k> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.6626 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 In-Reply-To: <20041003092355.42336.qmail@pb1.pair.com> Subject: RE: [PHP-DEV] any chance for feature in soap extension? From: dmitry@zend.com ("Dmitry Stogov") References: <20041003092355.42336.qmail@pb1.pair.com> Hi Robert, It is possible to grab output with output control functions. ob_start(); $server->handle($request); $response = ob_get_contents(); ob_end_clean(); Thanks. Dmitry. > -----Original Message----- > From: Robert Janeczek [mailto:rashid@ds.pg.gda.pl] > Sent: Sunday, October 03, 2004 13:33 > To: internals@lists.php.net > Subject: [PHP-DEV] any chance for feature in soap extension? > > > what are the chances that soap extension will have the > (optional) ability to return output from SoapServer::handle > instead of echo`ing it with http headers? current version > makes it impossible to create soap server other than > httpd-based (even more - it`s impossible to create server for > not httpd-linked sapi). if there is a way to do this - give > me some directions please. thanks > > rash > > ps. yes, i know there is soap server class in pear :] > > -- > PHP Internals - PHP Runtime Development Mailing List > To unsubscribe, visit: http://www.php.net/unsub.php > >