Reputation: 4251
Not getting the response body for http post request in android.
I am mentioning the userid, password in the name value pairs and putting in the httppost request by
postrequest.setEntity(new UrlEncodedFormEntity(nameValuePairs));
but on executing i am getting the response as SC_OK(200), but the response body is null
.
One more problem is if i specify header in HTTPGet or HTTPPost's request using setHeader()
function i am getting BAD REQUEST (404) response.
Please help me in resolving the above issue.
Thanks & Regards,
SSuman185
Upvotes: 5
Views: 2822
Reputation: 6322
here's a method for easy POST to a page, and getting the response as a string. The first param (the HashMap) is a key-value list of parameters you want to send. There is no error handling so you'll have to do that:
public static String doPost(HashMap<String,String> params, String url) {
HttpPost httpost = new HttpPost(url);
try {
httpost.setURI(new URI(url));
} catch (URISyntaxException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
HttpResponse response = null;
List <NameValuePair> nvps = new ArrayList <NameValuePair>();
Set entryset = params.entrySet();
Iterator iterator = entryset.iterator();
Log.d("Posted URL: ", url+" ");
while(iterator.hasNext()) {
Map.Entry mapentry = (Map.Entry)iterator.next();
String key = ((String)mapentry.getKey()).toString();
String value = (String)mapentry.getValue();
nvps.add(new BasicNameValuePair(key, value));
Log.d("Posted param: ", key+" = "+value);
}
try {
httpost.setEntity(new UrlEncodedFormEntity(nvps, HTTP.UTF_8));
try {
httpost.setURI(new URI(url));
} catch (URISyntaxException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
response = getClient().execute(httpost);
HttpEntity entity = response.getEntity();
return convertStreamToString(entity.getContent());
} catch (Exception e) {
// some connection error occurred, nothing we can do
e.printStackTrace();
}
return null;
}
Upvotes: 1
Reputation: 11107
Hi friend pl try this way to get response from the Server..
Where Given link is the link where u want to post the request..
String link2 = "http://184.106.227.45/quaddeals/university-of-illinois/androids_deals/user_card_list.json";
DefaultHttpClient hc1 = new DefaultHttpClient();
ResponseHandler<String> res1 = new BasicResponseHandler();
HttpPost postMethod1 = new HttpPost(link2);
List<NameValuePair> nameValuePairs1 = new ArrayList<NameValuePair>(1);
nameValuePairs1.add(new BasicNameValuePair("user_id",account_userId));
postMethod1.setEntity(new UrlEncodedFormEntity(nameValuePairs1));
String response1 = hc1.execute(postMethod1, res1);
Upvotes: 0