【发布时间】:2011-03-08 06:21:52
【问题描述】:
我的要求如下...
<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...
谢谢。
【问题讨论】:
-
在 ksoap2 中使用
SoapObject.addProperty.("name of object",value (may be string or array of String))。 -
尝试了同样的方法.. 不工作!!!
标签: android soap ksoap2 ksoap android-ksoap2