本帖最后由 kkDragon123 于 2013-03-26 15:50:07 编辑

解决方案 »

  1.   

    自己解决了。
    SoapObject result = (SoapObject)envelope.getResponse();
    result = (SoapObject)result.getProperty(1); 
    result = (SoapObject)result.getProperty(0);
    for(int i=0;  i< result.getPropertyCount(); i++ ){
    HashMap<String, String> map=new HashMap<String, String>();
    SoapObject soap = (SoapObject) result.getProperty(i);
    String xm =soap.getProperty("xm").toString();
    String zhuangtai =soap.getProperty("wfState").toString();
    String dizhi =soap.getProperty("wfAdd").toString();
    最后是这样解决的,给遇到同样问题朋友看看答案