Return to T37.phpt CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / soap / tests / soap12 |
1.1 misho 1: --TEST-- 2: SOAP 1.2: T37 unknownHdr 3: --SKIPIF-- 4: <?php require_once('skipif.inc'); ?> 5: --FILE-- 6: <?php 7: $HTTP_RAW_POST_DATA = <<<EOF 8: <?xml version='1.0' ?> 9: <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope"> 10: <env:Header> 11: <test:Unknown xmlns:test="http://example.org/ts-tests" 12: env:role="http://www.w3.org/2003/05/soap-envelope/role/ultimateReceiver">foo</test:Unknown> 13: </env:Header> 14: <env:Body> 15: </env:Body> 16: </env:Envelope> 17: EOF; 18: include "soap12-test.inc"; 19: ?> 20: --EXPECT-- 21: <?xml version="1.0" encoding="UTF-8"?> 22: <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope"><env:Body/></env:Envelope> 23: ok