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:[EMAIL PROTECTED] 
> Sent: Sunday, October 03, 2004 13:33
> To: [EMAIL PROTECTED]
> 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
> 
> 

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to