xref: /PHP-5.5/ext/soap/tests/soap12/T27.phpt (revision 1f68c98a)
1--TEST--
2SOAP 1.2: T27 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:xs="http://www.w3.org/2001/XMLSchema">
11  <env:Body>
12    <test:echoStringArray xmlns:test="http://example.org/ts-tests"
13          xmlns:enc="http://www.w3.org/2003/05/soap-encoding"
14          env:encodingStyle="http://www.w3.org/2003/05/soap-encoding">
15      <test:array enc:itemType="xs:string" enc:arraySize="1">
16        <a>
17          <b>1</b>
18        </a>
19      </test:array>
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 encoding rules</env:Text></env:Reason></env:Fault></env:Body></env:Envelope>
29
30