xref: /PHP-5.5/ext/soap/tests/soap12/T58.phpt (revision 1f68c98a)
1--TEST--
2SOAP 1.2: T58 echoIntegerArray
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:echoIntegerArray xmlns:test="http://example.org/ts-tests"
14          env:encodingStyle="http://www.w3.org/2003/05/soap-encoding">
15      <inputIntegerArray enc:itemType="xsd:int" enc:arraySize="1"
16                   xmlns:enc="http://www.w3.org/2003/05/soap-encoding">
17        <a><b>1</b></a>
18      </inputIntegerArray>
19    </test:echoIntegerArray>
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"><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>
28
29