Inquiry, how to consume a soap service using the KSOAP2 android library, the web service is: link
to use the library: NAMESPACE, URL, METHOD_NAME, and SOAP_ACTION. I do not know exactly what those parameters are.
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
request.addProperty("Usuario", "x...x");
request.addProperty("Password", "x...x");
request.addProperty("Servicio", "x...x");
request.addProperty("Tipodocumento", "D");
request.addProperty("Nrodocumento", "x...x");
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER10);
envelope.dotNet = true;
envelope.setOutputSoapObject(request);
HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);
try {
androidHttpTransport.call(SOAP_ACTION, envelope);
System.out.println("Respuesta: " + envelope.getResponse().toString());
...
Thank you.