xref: /PHP-7.4/ext/soap/tests/soap12/T75.phpt (revision a70a620a)
1--TEST--
2SOAP 1.2: T75 echoResolvedRef
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:echoResolvedRef xmlns:test="http://example.org/ts-tests"
12        env:role="http://www.w3.org/2003/05/soap-envelope/role/next"
13        env:mustUnderstand="1">
14    <test:RelativeReference xml:base="http://example.org/today/"
15          xlink:href="new.xml"
16          xmlns:xlink="http://www.w3.org/1999/xlink" />
17  </test:echoResolvedRef>
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:responseResolvedRef>http://example.org/today/new.xml</ns1:responseResolvedRef></env:Header><env:Body/></env:Envelope>
28ok
29