Prepare for your Next Interview
This is a discussion on What is POST within the Java forums, part of the Software Development category; I want to have a brief knowledge about POST. Can someone share your thoughts on this in this discussion?...
|
|||
|
Re: What is POST
Hope that you want to know about POst Office Protocol.A POst Office Protocol is a protocol designed to allow single user computers to retrieve electronic mail from a POP server. The POP server might be a computer with a permanent Internet connection whereas its clients might only connect to it occasionally.
|
|
|||
|
Re: What is POST
"POST" is one method to submitting form data to serverside program. A bulk amount of data we can post to the server by this method.
Example: <html> <form action="url" method=POST> Enter the Name: <input type="text" name="text1" size="10"> <input type="submit" value="Submit"> </form> </html> In the above program, "url" may be a servlet or jsp program, which is going to collect and process the data from the form. Using POST method a bulk amount of data we can post to the server. And one more method is there instead of POST is called "GET". This method post the data to server in the form of query string. i.e We can see the see the data on the address bar. By this method we can send only a limited amount of data to server. 256 bytes only. |
|
|||
|
Re: What is POST
If i am understanding right POST stands from "Power on Self Test" . This is the process which taken place, when a computer boots up. This is the process to check all hardware and software availability
|
![]() |
|
| Thread Tools | |
| Display Modes | |
|
|