--TEST-- SOAP Server 23: Send SOAP headers those were not received --SKIPIF-- --FILE-- addSoapHeader(new SoapHeader("http://testuri.org", "Test1", "Hello Header!")); $server->addSoapHeader(new SoapHeader("http://testuri.org", "Test2", "Hello Header!")); return "Hello Body!"; } $server = new soapserver(null,array('uri'=>"http://testuri.org")); $server->addfunction("test"); $HTTP_RAW_POST_DATA = << EOF; $server->handle($HTTP_RAW_POST_DATA); echo "ok\n"; ?> --EXPECT-- Hello Header!Hello Header!Hello Body! ok