PHP 8.5.0 RC 2 available for testing

SoapServer::addSoapHeader

(PHP 5 >= 5.1.3, PHP 7, PHP 8)

SoapServer::addSoapHeader โ€” Aรฑade un encabezado SOAP a una respuesta

Descripciรณn

public SoapServer::addSoapHeader(SoapHeader $header): void

Aรฑade un encabezado SOAP a la respuesta actual.

Parรกmetros

header

El encabezado a devolver.

Valores devueltos

No se retorna ningรบn valor.

๏ผ‹add a note

User Contributed Notes 1 note

up
0
vladimir at bashkirtsev dot com ยถ
8 years ago
Notably addSoapHeaders() must be called within handling class/object.

If you call addSoapHeaders() like this:

$server = new SoapServer("some.wsdl");
$server->setObject(new Service());
$server->addSoapHeaders(new SoapHeader("ns", "Header", "value"));
$server->handle();

Your SOAP header will not be added to the server response as it will be overwritten by result of handle() function.

If you want to add SOAP headers to the resulting response you should make $server global/static variable and then call addSoapHeaders() from within of the method of Service class which will handle the request.
To Top