xref: /PHP-5.5/ext/soap/tests/soap12/T46.phpt (revision 10371b03)
1--TEST--
2SOAP 1.2: T46 echoNestedArray
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:echoNestedArray xmlns:test="http://exaple.org/ts-tests"
14          env:encodingStyle="http://www.w3.org/2003/05/soap-encoding">
15      <inputStruct xsi:type="ns1:SOAPArrayStruct"
16                   xmlns:ns1="http://example.org/ts-tests/xsd">
17        <varInt xsi:type="xsd:int">42</varInt>
18        <varFloat xsi:type="xsd:float">0.005</varFloat>
19        <varString xsi:type="xsd:string">hello world</varString>
20        <varArray enc:itemType="xsd:string" enc:arraySize="3"
21		          xmlns:enc="http://www.w3.org/2003/05/soap-encoding">
22          <item xsi:type="xsd:string">red</item>
23          <item xsi:type="xsd:string">blue</item>
24          <item xsi:type="xsd:string">green</item>
25        </varArray>
26      </inputStruct>
27    </test:echoNestedArray>
28  </env:Body>
29</env:Envelope>
30EOF;
31include "soap12-test.inc";
32?>
33--EXPECT--
34<?xml version="1.0" encoding="UTF-8"?>
35<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope" xmlns:ns1="http://example.org/ts-tests" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:enc="http://www.w3.org/2003/05/soap-encoding" xmlns:ns2="http://example.org/ts-tests/xsd"><env:Body xmlns:rpc="http://www.w3.org/2003/05/soap-rpc"><ns1:echoNestedArrayResponse env:encodingStyle="http://www.w3.org/2003/05/soap-encoding"><rpc:result>return</rpc:result><return xsi:type="ns2:SOAPArrayStruct"><varString xsi:type="xsd:string">hello world</varString><varInt xsi:type="xsd:int">42</varInt><varFloat xsi:type="xsd:float">0.005</varFloat><varArray enc:itemType="xsd:string" enc:arraySize="3" xsi:type="ns2:ArrayOfstring"><item xsi:type="xsd:string">red</item><item xsi:type="xsd:string">blue</item><item xsi:type="xsd:string">green</item></varArray></return></ns1:echoNestedArrayResponse></env:Body></env:Envelope>
36ok
37