多くの例を検索しました。
しかし、key=>value 型ではないネストされた配列構造を定義する方法が見つかりません。
クライアントは、key=>value 型ではない配列で「hello」関数を呼び出します。
クライアント側から入力パラメータに触れることができません。
クライアント側。
$client = new soapclient('http://localhost/Ex.php?wsdl', 'wsdl');
$ddd = array($id, $pw);
$parameter = array($aaa, $bbb, $ccc, $ddd);
// Call the SOAP method
$result = $client->call('hello',$parameter);
サーバ側。
$server->wsdl->addComplexType(
'noKey',
'complexType',
'struct',
'all',
'',
array(
'0'=>array( 'name'=> '0', 'type' => 'xsd:string'),
'1'=>array( 'name'=> '1', 'type' => 'xsd:string')
//this definition occurred error.
)
);
$server->register('hello', // method name
array(
'aaa' =>'xsd:string',
'bbb' =>'xsd:string',
'ccc' =>'xsd:string',
'ddd' =>'tns:noKey'
), // input parameters
array('return' => 'xsd:string'), // output parameters
'urn:Exwsdl', // namespace
false, // soapaction
'rpc', // style
'encoded', // use
'Greet a person entering the sweepstakes' // documentation
);
function hello($aaa, $bbb, $ccc, $ddd) {
return $aaa.", ".$bbb.", ".$ccc.", ".$ddd[0].", ".$ddd[1];
}
エラー
Array
(
[faultcode] => SOAP-ENV:Client
[faultactor] =>
[faultstring] => error in msg parsing:
XML error parsing SOAP payload on line 1: XML_ERR_NAME_REQUIRED
[detail] =>
)
助けてTT