Annotation of embedaddon/php/ext/soap/tests/soap12/T64.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: SOAP 1.2: T64 echoOk
                      3: --SKIPIF--
                      4: <?php require_once('skipif.inc'); ?>
                      5: --FILE--
                      6: <?php
                      7: $HTTP_RAW_POST_DATA = <<<EOF
                      8: <?xml version='1.0' ?>
                      9: <!DOCTYPE DOC [
                     10: <!NOTATION application_xml SYSTEM 'http://www.isi.edu/in-notes/iana/assignments/media-types/application/xml'>
                     11: ]>
                     12: <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope"> 
                     13:  <env:Body>
                     14:     <test:echoOk xmlns:test="http://example.org/ts-tests">
                     15:       foo
                     16:     </test:echoOk>
                     17:  </env:Body>
                     18: </env:Envelope>
                     19: EOF;
                     20: include "soap12-test.inc";
                     21: ?>
                     22: --EXPECT--
                     23: <?xml version="1.0" encoding="UTF-8"?>
                     24: <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>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>