The stay-logged-in tag has no wiki summary.
0
votes
1answer
101 views
Stay logged in cookie doesn't work
I try do... Stay Logged in
This is my method for add cookie...
public static void addCookie(HttpServletResponse response, String name, String value, int maxAge) {
Cookie cookie = new ...
1
vote
1answer
164 views
“stay logged in” login page
I want to implement a stay logged in or remember me in my jsp login page. I am using container based form authentication. I think I need to I have to store users' data such as userid and token - a ...
0
votes
3answers
246 views
Global OnLoggedOut event in ASP.net?
Is there a way to be notified when a user becomes logged out with an ASP.net website?
Note: A user can become logged out without visiting or clicking a "logout" link.
When a user is logged out i ...
1
vote
4answers
722 views
Global OnLoggedIn event in ASP.net?
Is there a way to be notified when a user becomes logged in with an ASP.net website?
Note: A user can become logged in without visiting a "login page". If the "remember me" cookie exists, they can ...
3
votes
1answer
735 views
Stay Logged In Best Practices: How does a username in the cookie make it more secure?
This is a branch of another question:
What is the best way to implement "remember me" for a website?
The top answer is to implement this:
...
-1
votes
1answer
106 views
Using core data to store user objects
I have a question :) I often come across the case where I have some objects (books say) and a list of users. Each user has some books. There is also a special case of the currently logged in user who ...
1
vote
2answers
184 views
How to identify that the user is not logged off without having clicked the logout button?
How to identify that the user is not logged off without clicking the logout button using jQuery or javascript.
Here I need the logout button to appear when the user is not logged off when pressing ...
1
vote
6answers
696 views
Zend framework Remember Me - working issue
I have used the remember me functionality in my site using the following package : http://www.jasperrooswinkel.com/unexpected-expiration-of-zend_auth-sessions/. It is working fine. But I face a ...
1
vote
0answers
71 views
Stay logged into a social services via API
I am building a site which requires that the user stays logged into social networks (Twitter, Facebook, YouTube, etc.)
Example:
User registers with our site
User sets up their profile with specific ...
2
votes
1answer
189 views
User showed as online when profile data accessed using Profile.GetProfile ASP.Net
I have a gridview with a list of my users (using the ASP.Net Membership and Profile providers) and I have managed to display all the fields I need. But the problem is that when I access the page that ...
0
votes
1answer
544 views
Linkedin API: how to use my login credential in my access token
I'm building my website to pull out my own linkedin profile info. And it is working but when a visitor comes to the site, they will have to login to see my profile info displayed on my page. This ...
6
votes
6answers
4k views
Converting a Delphi application to run as a service - is it necessary?
I have a delphi app that logs data from various places and writes the data to a file. The app has quite an extensive GUI to allow display of the data, configuration of the options, etc.
One user has ...
2
votes
2answers
2k views
Windows Identity Foundation Security Token Service can't stay logged in
I'm using the Windows Identity Foundation (WIF) Security Token Service (STS) to handle authentication for my application which is working all well and good. However I can't seem to get any long ...
0
votes
2answers
230 views
Windows GUI application when user is not logged in?
I've written a Autoit script that starts a GUI application, when the application starts there is a login form. The scripts fills the login form and tries to log in. Then it records the time it took to ...
1
vote
1answer
860 views
Forms Authentication permanent login option along with non persistant option with sliding expiration
Is there any way to configure Forms authentication that I can make the cookie and ticket persistent with an indefinite expiration while having a non persistent option that doesn't require setting the ...
0
votes
1answer
856 views
Forms Authentication cookie seems to stop working
I want to have functionality on my application that lets a user check off that they wish to stay logged indefinitely (arbitrarily setting the cookie expiration at 3 months from NOW).
The code I have ...
