I am calling webservice and constantly getting Missing payload for POST error.. I dont know what is wrong with the code.. I have Called authentication webservice and receiving Accesskey.. And passing that accesskey to the other webservice from where i need list of players.. this is the code for my request :
// defaultHttpClient
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
xml = EntityUtils.toString(httpEntity);
Please suggest me where i am wrong...??? Also "Missing payload for POST" error is what exactly???