这是在Android中处理SOAP响应的最佳方法

时间:2011-06-30 11:35:49

标签: android parsing soap

我正在使用KSoap2与服务器通信。通信很好,并返回一组我在下面提到的值。我不确定我处理响应的方式。我编写了一个单独的java类,它实现 KvmSerializable ,用于将 XML 对象与java对象进行映射。经过长时间的网络研究,我发现使用解析器,如 SAX DOM ..等更加标准和灵活。

有什么办法可以让SAX解析下面的回复......如果是的话,请提供一些参考资料..

这是我从Android客户端应用程序向服务器发送请求后得到的响应。请注意,此响应不会以.xml /结尾作为.xml文件结束。

这是webclient的回复:

http://134.1.10.5/Maxima/MaximaSystem.asmx/ValidateLogin

<DataSet>
<xs:schema id="NewDataSet">
<xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="Table">
<xs:complexType>
<xs:sequence>
<xs:element name="Name" type="xs:string" minOccurs="0"/>
<xs:element name="UserIcode" type="xs:int" minOccurs="0"/>
<xs:element name="UserUserName" type="xs:string" minOccurs="0"/>
<xs:element name="UserPassword" type="xs:string" minOccurs="0"/>
<xs:element name="UserTypeICode" type="xs:int" minOccurs="0"/>
<xs:element name="ProfileTable" type="xs:string" minOccurs="0"/>
<xs:element name="UserTypeDesc" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>

<diffgr:diffgram>

<NewDataSet>
<Table diffgr:id="Table1" msdata:rowOrder="0">
<Name>Frecan </Name>
<UserIcode>634</UserIcode>
<UserUserName>dairy</UserUserName>
<UserPassword>dairy123</UserPassword>
<UserTypeICode>632</UserTypeICode>
<ProfileTable/>
<UserTypeDesc>Dentist</UserTypeDesc>
</Table>
</NewDataSet>
</diffgr:diffgram>
</DataSet>

这是回应。没有XML标签......任何东西......请建议我使用Android的原生解析器解析它的最佳方法。如果是,请提供一些参考资料。

这是我通过Android客户端ping服务器时获得的响应示例

 anyType{schema=anyType{element=anyType{complexType=anyType{choice=anyType{element=an
 yType{complexType=anyType{sequence=anyType{element=anyType{....
 // some values ........
 };
 element=anyType{};
 element=anyType{}; element=anyType{}; element=anyType{};     element=anyType{}; 
 element=anyType{}; }; }; }; }; };unique=anyType{selector=anyType{};
 field=anyType{};}; }; }; diffgram=anyType{}; }

请告诉我,是否可以在Android中使用原生解析器。

先谢谢。

1 个答案:

答案 0 :(得分:4)

SoapObject result = (SoapObject)envelope.bodyIn;

    if(result != null){

        int count = result.getPropertyCount();
        //TextView t = (TextView)this.findViewById(R.id.resultbox);
        //t.setText("SOAP response:\n\n" + count);

        SoapObject nameResult = (SoapObject) result.getProperty(0);
        // TextView t = (TextView)this.findViewById(R.id.resultbox);
        //t.setText("SOAP response:\n\n" + nameResult.toString());

        SoapObject test = (SoapObject) nameResult.getProperty(1);
        // TextView t = (TextView)this.findViewById(R.id.resultbox);
        // t.setText("SOAP response:\n\n" + test.toString());

        SoapObject dar = (SoapObject) test.getProperty(0);
        //TextView t = (TextView)this.findViewById(R.id.resultbox);
        //t.setText("SOAP response:\n\n" + dar.toString());

        SoapObject suvas = (SoapObject) dar.getProperty(0);
        int c = dar.getPropertyCount();
        TextView t = (TextView)this.findViewById(R.id.resultbox);
        t.setText("SOAP response:\n\n" + suvas.toString());
        //t.setText("SOAP response:\n\n" + c);
        //SoapObject nivas = (SoapObject) suvas.getProperty(NewsId);
        //TextView t = (TextView)this.findViewById(R.id.resultbox);
        // t.setText("SOAP response:\n\n" + nivas.toString());

    }

首先,您必须在soapObject中获取soap响应,然后计算总属性。

在计算完毕后,请逐一检查您拥有数据的属性, 你也可以实现一个内循环。