xref: /PHP-5.5/ext/soap/tests/soap12/T24.phpt (revision 1f68c98a)
1--TEST--
2SOAP 1.2: T24 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://wrong-version/">
10  <env:Body>
11    <test:echoOk xmlns:test="http://example.org/ts-tests">
12      foo
13    </test:echoOk>
14  </env:Body>
15</env:Envelope>
16EOF;
17include "soap12-test.inc";
18?>
19--EXPECT--
20<?xml version="1.0" encoding="UTF-8"?>
21<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope"><env:Body><env:Fault><env:Code><env:Value>env:VersionMismatch</env:Value></env:Code><env:Reason><env:Text>Wrong Version</env:Text></env:Reason></env:Fault></env:Body></env:Envelope>
22