0

多くの例を検索しました。

しかし、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

4

1 に答える 1

0

複合型の定義で、配列要素の名前として数字を使用しないでください。

あなたのコードの次のバージョンは私にとってはうまくいきます:

$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
);

$server->wsdl->addComplexType(
    'noKey',
    'complexType',
    'struct',
    'all',
    '',
    array(
        'forename'=>array( 'name'=> 'forename', 'type' => 'xsd:string'),
        'surname'=>array( 'name'=> 'surname', 'type' => 'xsd:string')
        )
);

function hello($aaa, $bbb, $ccc, $ddd) {
    return $aaa.", ".$bbb.", ".$ccc.", ".$ddd['forename'].", ".$ddd['surname'];
}
于 2013-02-05T20:34:11.377 に答える