xref: /PHP-7.4/ext/soap/tests/soap12/T32.phpt (revision 840526f1)
1--TEST--
2SOAP 1.2: T32 echoHeader
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:Header>
11    <test:requiredHeader xmlns:test="http://example.org/ts-tests"
12          env:mustUnderstand="true">foo</test:requiredHeader>
13  </env:Header>
14  <env:Body>
15    <test:echoHeader xmlns:test="http://example.org/ts-tests">
16    </test:echoHeader>
17  </env:Body>
18</env:Envelope>
19EOF;
20include "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" xmlns:ns1="http://example.org/ts-tests"><env:Body><ns1:echoHeaderResponse>foo</ns1:echoHeaderResponse></env:Body></env:Envelope>
25ok
26