Android Ksoap2复杂请求

Android Ksoap2复杂请求,android,soap,ksoap2,Android,Soap,Ksoap2,需要帮助将soap请求转换为适用于android的KSOAP2请求。Soap请求如下所示- <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/

需要帮助将soap请求转换为适用于android的KSOAP2请求。Soap请求如下所示-

<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>

使用者
0
后勤1
有什么想法吗