xref: /PHP-5.5/ext/soap/tests/soap12/T59.phpt (revision 1f68c98a)
1--TEST--
2SOAP 1.2: T59 echoStringArray
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              xmlns:xsd="http://www.w3.org/2001/XMLSchema"
11              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
12  <env:Body>
13    <test:echoStringArray xmlns:test="http://example.org/ts-tests"
14          env:encodingStyle="http://www.w3.org/2003/05/soap-encoding">
15      <inputStringArray enc:itemType="xsd:string"
16                        xmlns:enc="http://www.w3.org/2003/05/soap-encoding">
17        <item enc:id="data" xsi:type="xsd:string" enc:ref="#data">hello</item>
18        <item>world</item>
19      </inputStringArray>
20    </test:echoStringArray>
21  </env:Body>
22</env:Envelope>
23EOF;
24include "soap12-test.inc";
25?>
26--EXPECT--
27<?xml version="1.0" encoding="UTF-8"?>
28<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope"><env:Body><env:Fault><env:Code><env:Value>env:Receiver</env:Value></env:Code><env:Reason><env:Text>SOAP-ERROR: Encoding: Violation of id and ref information items '#data'</env:Text></env:Reason></env:Fault></env:Body></env:Envelope>
29