Annotation of embedaddon/php/ext/soap/tests/soap12/T31.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: SOAP 1.2: T31 returnVoid
        !             3: --SKIPIF--
        !             4: <?php require_once('skipif.inc'); ?>
        !             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:returnVoid xmlns:test="http://example.org/ts-tests">
        !            12:     </test:returnVoid>
        !            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" xmlns:ns1="http://example.org/ts-tests" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:enc="http://www.w3.org/2003/05/soap-encoding"><env:Body><ns1:returnVoidResponse env:encodingStyle="http://www.w3.org/2003/05/soap-encoding"/></env:Body></env:Envelope>
        !            21: ok
        !            22: 

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