T74.phpt 915 B

12345678910111213141516171819202122232425262728
  1. --TEST--
  2. SOAP 1.2: T74 doubleHdr
  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. <env:Header>
  11. <test:echoOk xmlns:test="http://example.org/ts-tests"
  12. env:role="http://www.w3.org/2003/05/soap-envelope/role/next">foo</test:echoOk>
  13. <test:Unknown xmlns:test="http://example.org/ts-tests">
  14. <test:raiseFault env:mustUnderstand="1"
  15. env:role="http://www.w3.org/2003/05/soap-envelope/role/next">
  16. </test:raiseFault>
  17. </test:Unknown>
  18. </env:Header>
  19. <env:Body>
  20. </env:Body>
  21. </env:Envelope>
  22. EOF;
  23. include "soap12-test.inc";
  24. ?>
  25. --EXPECT--
  26. <?xml version="1.0" encoding="UTF-8"?>
  27. <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>
  28. ok