i am having this challenge that have been driving me crazy and don't know how to fix it. I have developed an android application that will post some data to a remote url using post. here is my method to handle that
public static String fetchStringFromRemotePOST(String url,List<NameValuePair> nameValuePairs){
HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost(url);
Log.i("URL",url);
String line = "";
String content = "";
try{
post.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = client.execute(post);
BufferedReader rd = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
while ((line = rd.readLine()) != null) {
content += line;
}
}catch(Exception e){
Log.d("String Fetch ERROR",e.toString());
}
return content;
}
and to call the method
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
nameValuePairs.add(new BasicNameValuePair("post","okpokor"));
String url = "http://wwww.host.com/post.php";
String response = UtilMethod.fetchStringFromRemotePOST(url,nameValuePairs);
And also, i have included the internet permission in the Android manifest file
<uses-permission
android:name="android.permission.INTERNET" />
<application
...
I have gone through the same problem discussed on other threads previously and none of the suggestions really worked for me, suggestions like re-starting the Eclipse and AVD.
Really need help!
