1

I am working in Java,Restful Web Services at Server side and Jsp,javascript at Client side

I want to know how Remember me works

I have doing analysis so many sites and i am getting one thing is that they dont use Cookie for this purpose.

Lucifer
  • 29,392
  • 25
  • 90
  • 143
Yogesh Prajapati
  • 4,770
  • 2
  • 36
  • 77
  • What makes you think they don't use cookies? There is no other way that a website would be aware of who you are without login. – rfeak Apr 09 '12 at 04:50

1 Answers1

1

Remember Me works with Cookies. You dont need to use REST for this.

Check this answer from Balcus to see how.

Community
  • 1
  • 1
Starx
  • 77,474
  • 47
  • 185
  • 261
  • you mean my UserNAme and Password is filled out in form by Cookies ? – Yogesh Prajapati Apr 09 '12 at 02:30
  • @yogeshprajapati, Yeah.... not the password, but they generally store a token which validates the login session, but UserName are almost filled out by cookies. – Starx Apr 09 '12 at 02:32
  • try Facebook by Removing Cookie facebook fills all detail if remember checked, i want to create this type of mechanism for my site. – Yogesh Prajapati Apr 09 '12 at 02:34