If we disable cookies in our web page, what will happen?
Answer Posted / sekhar babu
if cookies are disable the session tracking gets failed it
unable to identifies the clients previous request.
even cookies are disable we can maintain session with
res.encodeURL("path") method.
| Is This Answer Correct ? | 21 Yes | 0 No |
Post New Answer View All Answers
What do you mean by servlet context?
How can we implement a jsp page?
Explain request dispatcher and its methods.
What is servlet instance?
What are the different mode that servlets can be used?
How do you find out what client machine is making a request to your servlet
Why servlet is faster than jsp?
Name the packages that work with servlet?
What are the type of protocols used in httpservlet?
How will you pass values from HTML page to the servlet?
What is the difference between servlet and filter?
What is the workflow of a servlet?
What is the procedure for initializing a servlet?
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!
How to handle exceptions thrown by application with another servlet?