I am new to android programming and trying to use webservice in this sample program:
I use Android 4.1 and my IDE is Eclipse Juno. I think the programming part is ok
Try adding strictmode to your application. In your onCreate method, add
StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build(); StrictMode.setThreadPolicy(policy);