How are Sessions are more advantage than using of Cookies
or URLReWriting?
Answers were Sorted based on User's Feedback
Answer / shiva
Sessions are more secure than cookies because, sessions are
stored at server side,and cookies are stored at client side.
if at all user deletes the cookies in between the process,
the information will be lost.. In URL rewriting for every
page we should carry the information, in that there may be
any secure data. so, to avoid this we need to follow the
hidden fields.. compare to all these,sessions will maintain
good security...
| Is This Answer Correct ? | 21 Yes | 4 No |
Sessions are more secure and fast than Cookies
andURLReWriting as they are stored on the server side,
| Is This Answer Correct ? | 4 Yes | 7 No |
Write a simple servlet program to print the contents of html.
What is servlet and its types?
What is the difference between using getSession(true) and getSession(false) methods?
A client sends requests to two different web components. Both of the components access the session. Will they end up using the same session object or different session ?
What is the difference between Get and Post Method?
How we can create war file in servlet?
what is a session object?
What is java servlet?
Given the request path below, which are context path, servlet path and path info? /bookstore/education/index.html
Explain the methods of request dispatcher in servlet?
Explain the difference between GET and POST methods?
Explains the differences between context.getrequestdispatcher() and request.getrequestdispatcher()?