xref: /php-src/ext/soap/tests/soap12/T80.phpt (revision 7f2f0c00)
1--TEST--
2SOAP 1.2: T80 echoOk
3--EXTENSIONS--
4soap
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:echoOk xmlns:test="http://example.org/ts-tests" env:encodingStyle="http://example.org/PoisonEncoding">foo</test:echoOk>
12  </env:Body>
13</env:Envelope>
14EOF;
15include "soap12-test.inc";
16?>
17--EXPECT--
18<?xml version="1.0" encoding="UTF-8"?>
19<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope"><env:Body><env:Fault><env:Code><env:Value>env:DataEncodingUnknown</env:Value></env:Code><env:Reason><env:Text>Unknown Data Encoding Style</env:Text></env:Reason></env:Fault></env:Body></env:Envelope>
20