0
我使用nuSOAP在PHP中使用webservice。 webservice返回一個對象數組。 當使用如何在PHP上的nuSoap上創建web服務,該服務返回可以從WCF調用的數組?
$server->wsdl->addComplexType(
"thingArray", // type name
"complexType", // soap type
'array', // php type (struct/array)
'sequence', // composition (all/sequence/choice)
'', // base restriction
array( // elements
'item' => array(
'name' => 'item',
'type' => 'tns:thing',
'minOccurs' => '0',
'maxOccurs' => 'unbounded'
)
),
array(), // attributes
"tns:thing" // array type
);
WCF客戶端調用時,抱怨它不能轉換的東西[]以thingArray失敗。