T15.phpt 605 B

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