Edit report at http://bugs.php.net/bug.php?id=41804&edit=1
ID: 41804
Comment by: tom at samplonius dot org
Reported by: snovak7 at gmail dot com
Summary: Add SoapServer header support
Status: Open
Type: Feature/Change Request
Package: SOAP related
Operating System: *
PHP Version: 5.2.3
Block user comment: N
Private report: N
New Comment:
I don't believe this is a bug. If you want to perform HTTP
Authentication on the SoapServer, just do that before calling
SoapServer::handle().
Previous Comments:
------------------------------------------------------------------------
[2007-06-25 17:33:18] snovak7 at gmail dot com
Description:
------------
When I send a SOAP Request to a server, I want to authenticate first for
a Response, I have to send credentials to "log" in. Normally this is
part of Header. Since client has support to add Header to a Request,
there's lack of it on the server side. My suggestion is since normally
when you send a Request is a one time request that calls a function with
argument, that there should be added argument to that same function as
the first argument, but only with header data and if there's no header
information then this argument should be null.
Reproduce code:
---------------
function server_code( $body, $header )
{
return $back;
}
$server = new SoapServer( 'somefile.wsdl' );
$server->addFunction( "server_code" );
$server->handle();
Expected result:
----------------
usable $header
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/bug.php?id=41804&edit=1