5.2.6
STARTING TEST WITHOUT XSI-ARRAY


INPUT WITHOUT XSI-ARRAY
=======================
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://castex.de/test43338/">
	<SOAP-ENV:Body>
		<ns1:getSomething>
			<in>string1</in>
			<in>string2</in>
			<in2>string3</in2>
		</ns1:getSomething>
	</SOAP-ENV:Body>
</SOAP-ENV:Envelope>


OUTPUT
======
stdClass Object
(
    [in] => Array
        (
            [0] => string1
            [1] => string2
        )
    [in2] => Array
        (
            [0] => string3
        )
)
5.2.10-dev





STARTING TEST WITH XSI-ARRAY


INPUT WITH XSI-ARRAY
====================
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://castex.de/test43338/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
	<SOAP-ENV:Body>
		<ns1:getSomething>
			<in SOAP-ENC:arrayType="xsd:string[2]" xsi:type="SOAP-ENC:Array">
				<item xsi:type="xsd:string">string1</item>
				<item xsi:type="xsd:string">string2</item>
			</in>
			<in2 xsi:type="xsd:string">string3</in2>
		</ns1:getSomething>
	</SOAP-ENV:Body>
</SOAP-ENV:Envelope>


OUTPUT
======
stdClass Object
(
    [in] => Array
        (
            [0] => Array
                (
                    [0] => string1
                    [1] => string2
                )
        )
    [in2] => Array
        (
            [0] => string3
        )
)
5.2.10-dev
still not working :-(