简体   繁体   中英

How To Parse XML Respond Of Web Service In Andorid

Hi Guys I am new to Ksoap. I manage to some work on the Web Services in android but Now I am unable to find out how can I parse the XML respond of the Web Service Please Help Me.

The XML In Response

anyType
{
schema=anyType
{
element=anyType
{
complexType=anyType
{
choice=anyType
{
element=anyType
{
complexType=anyType
{
sequence=anyType
{
element=anyType{}; 
element=anyType{}; 
element=anyType{}; 
element=anyType{}; 
element=anyType{};
element=anyType{}; 
}; }; }; };  };  }; }; 

diffgram=anyType
{
MobileApp=anyType
{
tbl_Vehicles=anyType
{
 ID=1; 
 PlateNumber=95459;
 Latitude=25.167330;
 Longitude=55.237670;
 Status=Driving;
 Location=Sheikh Zayed Rd. Dubai; 
}; 

tbl_Vehicles=anyType
{
ID=2; 
PlateNumber=45926;
Latitude=25.127791; 
Longitude=55.114626;
Status=Parked;
Location=Alpha Tours, Palm Jumeirah, Dubai; 
}; 
}; 
}; 
}

My Code Is As Follow

public void getVehicleList()
{
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);       

request.addProperty("UserID", id );

SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);

envelope.setOutputSoapObject(request);
envelope.dotNet = true;

try 
{
    HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);
    androidHttpTransport.call(SOAP_ACTION_LOGIN, envelope);


    if (envelope.bodyIn instanceof SoapFault) 
    {
        String str = ((SoapFault) envelope.bodyIn).faultstring;
        Log.i("SoapFault", str);
        showDialog("Error", "Their Is Some Problem In Server Response");
    } 
    else 
    {
        SoapObject response = (SoapObject)envelope.bodyIn;

        Log.d("Veh ID 8", "Result = " + response.toString() );
   }
} 
catch (Exception e) 
{
      e.printStackTrace();
}

}

也许您因为响应不是XML而很难受吗?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM