T26.phpt 650 B

123456789101112131415161718192021
  1. --TEST--
  2. SOAP 1.2: T26 echoOk
  3. --EXTENSIONS--
  4. soap
  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. <?xml-stylesheet href="http://example.org/ts-tests/sub.xsl" type = "text/xsl"?>
  11. <env:Body>
  12. <test:echoOk xmlns:test="http://example.org/ts-tests">foo</test:echoOk>
  13. </env:Body>
  14. </env:Envelope>
  15. EOF;
  16. include "soap12-test.inc";
  17. ?>
  18. --EXPECT--
  19. <?xml version="1.0" encoding="UTF-8"?>
  20. <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope" xmlns:ns1="http://example.org/ts-tests"><env:Body><ns1:responseOk>foo</ns1:responseOk></env:Body></env:Envelope>
  21. ok