Hello,
I am coding a basic android application that has to call a web
service, using KSOAP2, I am sending a request with one parameter
(city) and need to get the response of the web service (basically a
short String) from this site:
http://www.deeptraining.com/webservices/weather.asmx?op=GetWeather

When execultin the application, I only get a message:
"This application has stopped unexpectedly"

When debugging, I am getting the following error:
Thread [<3> main] (Suspended (exception VerifyError)
And:
ViewRoot.handleMessage(Message) line: 1198
that says: Source not Found
And shows a button allowing to:  Edit Source Lookup path.

What does this basically mean?

My source code that generates the is the following:
private static final String SoapAction = "http://www.deeptraining.com/
webservices/GetWeather";
private static final String MethodName = "GetWeather";
private static final String Namespace = "http://www.deeptraining.com/
webservices/";
private static final String URL = "http://www.deeptraining.com/
webservices/weather.asmx";

And the main part of it:
SoapObject request = new SoapObject(Namespace, MethodName);
request.addProperty("City", cityname);
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope
(SoapEnvelope.VER11);
envelope.setOutputSoapObject(request);
 HttpTransport androidHttpTransport = new HttpTransport(URL);
 try
 {
Result.setText("... Processing ...");
//error here:
androidHttpTransport.call(SoapAction, envelope);
...

Does anyone have a clue?
I am using Eclipse with Android plugin and KSOAP2 library.

Thank you.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to