2016-06-28 137 views

回答

0

您需要先進行更改Web服務的WSDL,然後從WSDL再生的骨架,就像聰明的WebService的客戶將不得不重新生成新的WSDL客戶端Stub和使用它的客戶端。

更改WSDL的實施例:

<complexType name='ArrayOfString'> 
    <sequence> 
     <element name='item' type='xsd:string' maxOccurs='unbounded'/> 
    </sequence> 
</complexType> 

這是一個類似的問題Describing a string array in a wsdl file

相關問題