04-18-2008, 07:07 AM
|
#1 (permalink)
|
| Thumbs Must Hurt
Join Date: Feb 2008 Model: 8310 PIN: N/A Carrier: Informatico
Posts: 56
Post Thanks: 0 Thanked 0 Times in 0 Posts
| ksoap2 Please Login to Remove! Hi
I want to save the result of web service with ksoap in a inputstream, how can i do it?
this is my code for save the result in an Stringitem.
try {
HttpTransport transport = null;
SoapObject soap = new SoapObject("http://tempuri.org/","Validarusuario");
soap.addProperty("usuario", "2");
soap.addProperty("password", "1");
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER10);
envelope.bodyOut = soap;
envelope.dotNet = true;
transport = new HttpTransport("http://100.1.1.126/WebService/service.asmx");
transport.debug = true;
transport.call("http://tempuri.org/Validarusuario", envelope);
StringItem item = new StringItem("Resultado: ", envelope.getResult().toString());
formulario.append(item);
} catch (Exception e) {
formulario.append(e.toString());
e.printStackTrace();
}
Thanks, Oscar |
| Offline
| |