How can we send user data to server using http protocol by using other than Query string ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Check out the Apache Commons HttpClient libraries. |
|||
|
|
|
The query string is used with HTTP GET requests. You can also use HTTP POST request. Here is a place to start: here |
|||
|
|
|
Here is an example on how to POST some JSON and expect JSON back using the Resty library (I'm the author yadda yadda).
|
|||
|
|