Re: [PHP] SoapServer::handlle

2005-02-16 Thread cfendt
Selon Richard Lynch <[EMAIL PROTECTED]>: > Charles FENDT wrote: > > >$server = new SoapServer(null, array('uri' => "http://test-uri/";)); > >$server->handle(""); > >echo "\nAlive\n"; > > ?> > > > > here is the result > > > > > > > xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/

Re: [PHP] SoapServer::handlle

2005-02-16 Thread Richard Lynch
Charles FENDT wrote: > $server = new SoapServer(null, array('uri' => "http://test-uri/";)); >$server->handle(""); >echo "\nAlive\n"; > ?> > > here is the result > > > xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/";> > > >SOAP-ENV:Server >Bad R

[PHP] SoapServer::handlle

2005-02-16 Thread FENDT Charles
Hello, I (try) to use a SoapServer in a CLI program. I want to redirect the SoapServer::handle() output from STDOUT to a socket stream. (my second question is how can i prevent SoapServer::handle() to kill my daemon process... cf php.soap) How can I o this ? regards FENDT Charles -- PHP General

[PHP] SoapServer::handlle

2005-02-16 Thread Charles FENDT
Hello, here is an example: "http://test-uri/";)); $server->handle(""); echo "\nAlive\n"; ?> here is the result http://schemas.xmlsoap.org/soap/envelope/";> SOAP-ENV:Server Bad Request this didn't output "Alive" on stdout... the script ends with the SoapSer