--TEST--
SOAP XML Schema 57: SOAP 1.1 Array (second way, literal encoding)
--SKIPIF--
--FILE--
EOF;
test_schema($schema,'type="tns:testType"',array(123,123.5),'rpc','literal');
echo "ok";
?>
--EXPECT--
123123
array(2) {
[0]=>
int(123)
[1]=>
int(123)
}
ok