xref: /PHP-7.4/ext/soap/tests/soap12/T74.phpt (revision 840526f1)
1--TEST--
2SOAP 1.2: T74 doubleHdr
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:echoOk xmlns:test="http://example.org/ts-tests"
12          env:role="http://www.w3.org/2003/05/soap-envelope/role/next">foo</test:echoOk>
13    <test:Unknown xmlns:test="http://example.org/ts-tests">
14      <test:raiseFault env:mustUnderstand="1"
15            env:role="http://www.w3.org/2003/05/soap-envelope/role/next">
16      </test:raiseFault>
17    </test:Unknown>
18  </env:Header>
19  <env:Body>
20  </env:Body>
21</env:Envelope>
22EOF;
23include "soap12-test.inc";
24?>
25--EXPECT--
26<?xml version="1.0" encoding="UTF-8"?>
27<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope" xmlns:ns1="http://example.org/ts-tests"><env:Header><ns1:responseOk>foo</ns1:responseOk></env:Header><env:Body/></env:Envelope>
28ok
29