how handle when client send multiple request at atime for
multiple servlets servlets?
Answers were Sorted based on User's Feedback
Answer / chandra
when client sends multiple requests to servlet instance each
thread will run in its own service
| Is This Answer Correct ? | 12 Yes | 1 No |
Answer / shinde
use a session and a token, and pass the parameter using a hidden method.when the first request reaches the server store the token in a global variable.If a duplicate request comes, validate using the token form the global variable and discard the duplicate one.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / susan
If th question based MVC-Struts,then to handle multiple
request we can use dispatch action
| Is This Answer Correct ? | 3 Yes | 5 No |
session menagement in servlets explaion briefly?
What is the difference between struts1 and struts2?
Briefly tell the two kinds of form beans.
why we use struts in our web application , means what was drawbacks of servlet ...pls answer
What is actioncontext?
What is the configuration files used in struts?
Explain about logic match tag?
Can you call Action class methods from Struts config.xml?
what is the disadvantages of using DynaActionForm in struts framework?
How you will enable front-end validation based on the xml in validation.xml?
how to develop the submit and search operations in single jsp using struts?
How to use forward action to restrict a strut application to mvc?