In a web app, when user logs in, a HttpSession
is created using HttpSession s = request.getSession(true);
This creates a cookie with jsessionid
on the browser.
But if cookies are disabled on browser, How can i proceed with login?
If Cookies are disabled. You should be using URL Rewriting mechanism for Session tracking.
Code Example: