Hello Everyone,
I have used HTTP Session object to store the information of the name of the customer in one of my application, which display the user name at every pages.Now in between when i clear my cookies the name disappear.As I am beginner for
SERVLET /
JSP and referring HFSJ book. I have read that HTTP Session uses cookie for handling the session only if cookie is enable at client side ,while if it is disable we have to do a little extra work using URL re-writing .In my code, I used sendReDirect(jspPage) method to send the response to JSP page, but when cookie is disabled then its not working so I have changed it to encodeReDirectURL(jspPage). But still user name is not coming. May be I am wrong but it is any more extra work needed to do when the cookies is disabled or only this is enough. When I debug the code I found that class editor says like servlet-api.jar need source.
Any Suggestion.