| Article: |
Handling Multiple Submits | |
| Subject: | Can any one explain me how this solves the problem??? | |
| Date: | 2003-04-10 11:38:22 | |
| From: | anonymous2 | |
|
Response to: Can any one explain me how this solves the problem???
|
||
|
Well basically, you're synchronizing your requests based on a session identifier. This is similar to the way you might handle the problem if you were writing your own multi-threaded server application, and you had to make sure that you knew where requests originated from.
|
||
Showing messages 1 through 1 of 1.
-
Can any one explain me how this solves the problem???
2003-04-10 14:42:28 anonymous2 [View]
I guess it does not solve the problem. What if the servlet redirects to the same page? Then the user would be able to do it again and again. Some token has to be put in the session so the servlet knows the request has been sumitted.


