T25.phpt 699 B

12345678910111213141516171819202122
  1. --TEST--
  2. SOAP 1.2: T25 echoOk
  3. --EXTENSIONS--
  4. soap
  5. --FILE--
  6. <?php
  7. $HTTP_RAW_POST_DATA = <<<EOF
  8. <?xml version='1.0' ?>
  9. <!DOCTYPE env:Envelope SYSTEM "env.dtd"[]>
  10. <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope">
  11. <env:Body>
  12. <test:echoOk xmlns:test="http://example.org/ts-tests">
  13. foo
  14. </test:echoOk>
  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:Fault><env:Code><env:Value>env:Receiver</env:Value></env:Code><env:Reason><env:Text>DTD are not supported by SOAP</env:Text></env:Reason></env:Fault></env:Body></env:Envelope>