Webservice xml解析

new Thread(new Runnable() {
    @Override
    public void run() {
        HttpTransportSE se=new HttpTransportSE("http://ws.webxml.com.cn/WebServices/MobileCodeWS.asmx");
        SoapSerializationEnvelope sse=new SoapSerializationEnvelope(SoapEnvelope.VER11);
        SoapObject so=new SoapObject("http://WebXml.com.cn/","getMobileCodeInfo ");
        sse.dotNet=true;
        sse.bodyOut=so;
        so.addProperty("mobileCode","15176046561");
        so.addProperty("userID","");
        try {
            se.call("http://WebXml.com.cn/getMobileCodeInfo",sse);
            SoapObject result= (SoapObject) sse.bodyIn;
            if(result!=null){
                final String result1 = result.getProperty("getMobileCodeInfoResult").toString();

                runOnUiThread(new Runnable() {
                    @Override
                    public void run() {
                        System.out.println(result1);
                        Toast.makeText(MainActivity.this, result1, Toast.LENGTH_SHORT).show();
                    }
                });
            }

        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}).start();
附Xml
POST /WebServices/MobileCodeWS.asmx HTTP/1.1
Host: ws.webxml.com.cn
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://WebXml.com.cn/getMobileCodeInfo"


  
    
      string
      string
    
  


HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length



  
    
      string
    
  


你可能感兴趣的:(Webservice xml解析)