Return to T03.phpt CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / soap / tests / soap12 |
1.1 misho 1: --TEST-- 2: SOAP 1.2: T03 echoOk 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:echoOk xmlns:test="http://example.org/ts-tests">foo</test:echoOk> 12: </env:Header> 13: <env:Body> 14: </env:Body> 15: </env:Envelope> 16: EOF; 17: include "soap12-test.inc"; 18: ?> 19: --EXPECT-- 20: <?xml version="1.0" encoding="UTF-8"?> 21: <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope" xmlns:ns1="http://example.org/ts-tests"><env:Header><ns1:responseOk>foo</ns1:responseOk></env:Header><env:Body/></env:Envelope> 22: ok