| Author |
bookmarking of a request
|
Arun Maalik
Ranch Hand
Joined: Oct 25, 2005
Posts: 216
|
|
Dear sir please specify me that what is the bookmarking of a request as we know that GET request can be bookmarked POST request can't what is mean by these please specify. with regard Arun kumar maalik
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56229
|
|
|
Bookmarking is when the browser remember the URL of a page. GETs can be bookmarked because the data needed for the request is stored in the URL and hence the bookmark. POSTS cannot because the data is stored in the request body which is not stored as part of the bookmark.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Christophe Verré
Sheriff
Joined: Nov 24, 2005
Posts: 14672
|
|
|
You cannot use your browser to bookmark a POST request, but you can use HTTP sniffers to get the request/cookies.... and store them to use them back again later. There's one in NetbeansIDE. I think it was called HTTP Monitor.
|
[My Blog]
All roads lead to JavaRanch
|
 |
 |
|
|
subject: bookmarking of a request
|
|
|