xref: /PHP-7.4/ext/soap/tests/soap12/T34.phpt (revision 840526f1)
1--TEST--
2SOAP 1.2: T34 unknownHdr
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          xmlns:env1="http://schemas.xmlsoap.org/soap/envelope/"
13          env1:mustUnderstand="true">foo</test:Unknown>
14  </env:Header>
15  <env:Body>
16  </env:Body>
17</env:Envelope>
18EOF;
19include "soap12-test.inc";
20?>
21--EXPECT--
22<?xml version="1.0" encoding="UTF-8"?>
23<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope"><env:Body/></env:Envelope>
24ok
25