• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps programming a simple form app

elad2109

Lurker
Hi,

I'm trying to write a java code on an Android emulator that will send a string to a web service writen in c#.

Android code:
HttpPost httppost = new HttpPost("http://192.168.2.1:53811/WinnerSite/WebService.asm/MyMethod


try {
// Add your data
List<namevaluepair> nameValuePairs = new ArrayList<namevaluepair>(2);
nameValuePairs.add(new BasicNameValuePair("json", name));
// nameValuePairs.add(new BasicNameValuePair("stringdata", "AndDev is Cool!"));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));

// Execute HTTP Post Request
HttpResponse response = httpclient.execute(httppost);
</namevaluepair></namevaluepair>

Also tried:
HttpPost httppost = new HttpPost("http://192.168.2.1:53811/WinnerSite/WebService.asm/MyMethod

The web-service is on the same machine as the emulator. MyMethod is accessable through:
http://localhost:53811/WinnerSite/WebService.asmx/MyMethod


I have two problems:
1. When running in debug mode in eclipse, my emulator keeps shuting down. What should I examin?
2. The execution fails on the "httpclient.execute" line. Any idea how can I fix that?


Thanks guys
 
Back
Top Bottom