Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Need to send a POST request to a Service provider using HTTPS protocol, response from the service provider will be an xml file, need to read that also.

share|improve this question

1 Answer

You could start by taking a look at AndroidHttpClient and at HttpPost.

Something like this should work:

 final AndroidHttpClient httpClient = AndroidHttpClient.newInstance(this.getClass().getSimpleName());
 HttpResponse httpresponse   = null;
 HttpEntity httpentity       = null;
 HttpUriRequest httprequest = new HttpPost("https://...");
 byte[] xmlByteArray = null;

 if ((httpresponse = httpClient.execute(httprequest)) != null) {
  if ((httpentity = httpresponse.getEntity()) != null) {
   xmlByteArray = EntityUtils.toByteArray(httpentity);
  }
 }

Also, my RestClient on github might be useful. Note: I use GET to retrieve the data, so YMMV.

share|improve this answer
you did not answer the implied question. – Joset Feb 8 '11 at 8:06
7  
hehe, my mind reading powers are a bit rusty. – aprock Feb 23 '11 at 15:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.