Answer Posted / jai
session data will be stored in appdomain aspnet_wp.exe when
session sate mode is inproc, for stateserver it will be
stored in windows service aspnet_state.exe, for sqlserver
it will be stored in the database persistsqlstate.exe
| Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
Write the code to get the server information in servlet.
What is a servlet context object?
What is cookies in servlet with example?
How servlets are deployed in java?
What is the difference between servlet and filter?
Why is httpservlet declared abstract?
Explain servlet.
What is the purpose of requestdispatcher interface?
Why are http servlets used in programming?
What is the difference between genericservlet and httpservlet
What is dispatcher servlet?
When Servlet is unloaded?
Differentiate between the print writer and servlet output stream?
Hello, My project requirement is like I need to create a web page using MVC pattern. I hava a bean class, jsp page, servlet, service and dao. My jsp has two fields. One is dropdown list. The option values has to get populated from the database table. The other one is a text box and its value has to come from database table. As of now I have defined the fields in bean class, got the values from database using arraylists in dao class and I called this from service class. Can anyone please tell me the workflow of how the servlet will get this arraylist and populate the arraylist values as dropdown options in jsp page? Also I would like to know the role of bean class in MVC pattern? Thanks in advance!
What is the difference between sendredirect() and forward() in a servlet?