需要帮助将soap请求转换为ksoap 2 for android。肥皂请求看起来像这样 -
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tim="http://www.g.com/schemas/T"
xmlns:tim1="http://www.g.com/schemas/T.Entities"
xmlns:f="http://www.g.com/schemas/T.Filters"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Header/>
<soapenv:Body>
<tim:GetFilteredList>
<tim:entityName>User</tim:entityName>
<tim:filter i:type="f:UserFilter">
<tim1:Id>0</tim1:Id>
<f:Login>login1</f:Login>
</tim:filter>
</tim:GetFilteredList>
</soapenv:Body>
</soapenv:Envelope>
任何想法?