I\'m calling php webservice through http post method. I\'m sending the request in the proper way, but when responce comes, it is not giving me response.
That\'s what I h
Perhaps you want to do something similar to the following.
HttpResponse response = client.execute(request);
StatusLine status = response.getStatusLine();
if (status.getStatusCode() == HttpStatus.SC_OK)
{
ResponseHandler responseHandler = new BasicResponseHandler();
String responseBody = responseHandler.handleResponse(response);
...
}