T33.phpt 670 B

1234567891011121314151617181920
  1. --TEST--
  2. SOAP 1.2: T33 nonexistentMethod
  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:Body>
  11. <test:DoesNotExist xmlns:test="http://example.org/ts-tests">
  12. </test:DoesNotExist>
  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"><env:Body><env:Fault><env:Code><env:Value>rpc:ProcedureNotPresent</env:Value></env:Code><env:Reason><env:Text>Procedure not present</env:Text></env:Reason></env:Fault></env:Body></env:Envelope>