到目前为止,我已经设法连接到 Web 服务并获得了 SoapObject 响应,但是我在缩小一个好的、干净的解析方式时遇到了麻烦。搜索互联网并没有真正产生太多结果,每个人都有不同的方式和不同的过程,通常针对他们自己的 Web 服务,使其成为一次性使用类型的解决方案。基本上,以下是我从 Web 服务获得的响应
anyType{
schema=anyType{
element=anyType{
complexType=anyType{
choice=anyType{
element=anyType{
complexType=anyType{
sequence=anyType{
element=anyType{};
element=anyType{};
element=anyType{};
element=anyType{}; }; }; }; }; }; }; };
diffgram=anyType{
NewDataSet=anyType{
Rep_x0020_Information=anyType{
Login=CorrectLogin; Password=InCorrectPass; }; }; }; }
基本上我希望能够解析出两个重要的字段(登录名和密码)。根据我阅读的内容,我尝试根据属性计数迭代 SoapObject 响应,但这似乎不起作用。当我尝试时,我得到的响应属性计数为 2,所以我最终做了如下这样的事情:
SoapObject response=(SoapObject) envelope.getResponse();
if (response != null) {
Log.i("Message", "the response contains: " + response.toString());
SoapObject diffgram = (SoapObject) response.getProperty("diffgram");
SoapObject NewDataSet = (SoapObject) diffgram.getProperty("NewDataSet");
SoapObject RepInfo = (SoapObject) NewDataSet.getProperty("Rep_x0020_Information");
for (int i = 0; i < RepInfo.getPropertyCount(); i++) {
PropertyInfo info = new PropertyInfo();
RepInfo.getPropertyInfo(i, info);
Log.d("Info", info.name + " : " + RepInfo.getProperty(i).toString());
}
//which gives the following message in LogCat
D/Info(716): Login : InCorrectLogin
D/Info(716): Password : InCorrectPass
这个过程有效,因为在最后一个循环中我得到了我想要的两个对象,但我只是觉得有一种更清洁的方法可以做到这一点。我只是问,因为随着我深入了解这个应用程序,将会进行一些更复杂的 Web 服务调用,我希望能够在整个应用程序中拥有可重用的东西,而不必为每个请求构建几个 SoapObjects 只是为了得到到我想要的对象。