1--TEST-- 2SOAP 1.2: T38.1 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:Unknown xmlns:test="http://example.org/ts-tests" 12 env:mustUnderstand="false" 13 env:role="http://example.org/ts-tests/C">foo</test:Unknown> 14 <test:echoOk xmlns:test="http://example.org/ts-tests" 15 env:mustUnderstand="0" 16 env:role="http://example.org/ts-tests/C">foo</test:echoOk> 17 </env:Header> 18 <env:Body> 19 </env:Body> 20</env:Envelope> 21EOF; 22include "soap12-test.inc"; 23?> 24--EXPECT-- 25<?xml version="1.0" encoding="UTF-8"?> 26<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> 27ok 28