xref: /PHP-5.5/ext/soap/tests/soap12/T72.phpt (revision 7bddbd7b)
1--TEST--
2SOAP 1.2: T72 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<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope"
10              env:encodingStyle="http://www.w3.org/2003/05/soap-encoding">
11  <env:Body>
12    <test:echoOk xmlns:test="http://example.org/ts-tests">
13      foo
14    </test:echoOk>
15  </env:Body>
16</env:Envelope>
17EOF;
18include "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:Sender</env:Value></env:Code><env:Reason><env:Text>encodingStyle cannot be specified on the Envelope</env:Text></env:Reason></env:Fault></env:Body></env:Envelope>
23