If we disable cookies in our web page, what will happen?

Answers were Sorted based on User's Feedback



If we disable cookies in our web page, what will happen?..

Answer / gajendra

If cookies are disabled in our browser, Session tracking
gets failed.

To overcome this limitation URL Rewriting concept will be
used.

Is This Answer Correct ?    33 Yes 1 No

If we disable cookies in our web page, what will happen?..

Answer / 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

If we disable cookies in our web page, what will happen?..

Answer / abc

to track web pages we can use

1. Cookies
2. URLRewriting
3. storing data in session
4. Using Hidden variable in form

Is This Answer Correct ?    9 Yes 2 No

If we disable cookies in our web page, what will happen?..

Answer / shailendra sharma

Cookies is used for identify to request.
if we disable the coookies then we cannot identify the
request

Is This Answer Correct ?    7 Yes 8 No

If we disable cookies in our web page, what will happen?..

Answer / navatha

If we disable the cookies in our webpage then the it cant
identify the clients request.because there will be no
jsessionid for our request.So it fails to remember our req
on the server .so once again it creates the sessionid for
another req.

Is This Answer Correct ?    2 Yes 4 No

If we disable cookies in our web page, what will happen?..

Answer / ravikiran

if we doen't encode the url the session tracking with the
help of sessions will not work

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More Servlets Interview Questions

What are the security issues in Servlets?

2 Answers  


Why is it that we can't give relative URL's when using ServletContext.getRequestDispatcher() when we can use the same while calling ServletRequest.getRequestDispatcher()?

0 Answers  


What’s the difference between forward() and sendredirect() methods?

0 Answers  


What is the difference between JspWriter and PrintWriter

4 Answers   Artech,


How many Cookies can a host support?

2 Answers  






What is the dispatcher servlet?

0 Answers  


How can we refresh automatically when new data is entered into the database?

0 Answers  


hi.... i have problem in running of servlet. i am using Tomcat server in my pc.. The problem is when i am click on strat it will display like below FAIL - Application at context path /first could not be started.. How i can slove the problem.. help plz

3 Answers  


Why HttpServlet class is declared abstract?

0 Answers  


What is http servlet?

0 Answers  


What are the types of servlet?

0 Answers  


Which exception is thrown if servlet is not initialized properly?

1 Answers  


Categories