Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anyone provide an example of how I could use GET and POST (Apache 4.1 HttpClient)?
Because most of the example that I found are using 3.x

share|improve this question

3 Answers

up vote 10 down vote accepted

This example demonstrates client authentication but also demonstrates how to perform a GET as well. This example demonstrates submitting parameters to a location and shows how to perform a POST.

share|improve this answer

Here is an example from the apache client WIKI:

http://wiki.apache.org/HttpComponents/QuickStart

It is a simple example showing a get and a post.

share|improve this answer
3  
Answers which just contain links are considered bad practice. Please summarize the content here (don't copy/paste) so the answer can stand on its own. If you don't you run the risk of your answer being removed, especially if the link ever dies. – Martijn Pieters Jun 1 '12 at 14:39

You can check this tutorial. i think it will help.

share|improve this answer

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.