I have an old API that I want to implement in my Android app. There is an existing older android app that uses apache's HttpPost class org.apache.http.client.methods.
The response format of the API is given below:
<?xml version='1.0' encoding='UTF-8' ?>
<root>
  <status>OK</status>
  <items>
    <item>
      <refno>123456</refno>
      <vehicle_name>BMW</vehicle_name>
      <model>BM1234</model>
      <color>BLACK</color>
    </item>
  </items>
</root>
Is it a pure SOAP library? Because after hours of research, I found the actual  SOAP response to include wsdl tags but the response in this API is simple. Please suggest me how would I implement this API in my android application.