我的要求如下...
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:arr="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<soapenv:Header/>
<soapenv:Body>
<Search>
<specialties>
<!--Zero or more repetitions:-->
<arr:int>1</arr:int>
<arr:int>2</arr:int>
<arr:int>3</arr:int>
</specialties>
<gender>
<!--Zero or more repetitions:-->
<arr:string>male</arr:string>
<arr:string>female</arr:string>
</gender>
</Search>
</soapenv:Body>
</soapenv:Envelope>
如何通过 Android Soap Request 传递相同的...
谢谢。