A session timeout occurs when a unique application session (e.g. a web session) expires due to a time limitation placed on the session.

learn more… | top users | synonyms

0
votes
1answer
24 views

Angular session management

Is there any way to manage user session using Angularjs?, I mean:: Session timeout - when system is idle. Alerts when session is near to expire with option to resume session. Redirect (or any other ...
0
votes
1answer
35 views

How to force Tomcat to delete expired Sessions when loggin User closes his Browser?

I implemented a SessionListener to track the open sessions of my webserver I set in my web.xml: <listener> <listener-class>demo.MyHttpSessionListener</listener-class> ...
0
votes
1answer
21 views

Website logout time issue

My website automatically logout after 15 mins . I want to set the timeout in two hours or one day . See below my Webconfig code <authentication mode="Forms"> <forms ...
0
votes
0answers
16 views

BASIC realm time out

PLease do you know how can i make a time out for a basic http authentification ? Here are some informations about the http basic authentification already done by alfresco. HTTP/1.1 401 Unauthorized ...
2
votes
2answers
40 views

Only one user logged in at a time

I have a requirement, that if user is logged in from one browser, then she couldn't be logged in from any where else. What I did is when user is logged in I entered her status in log table as logged ...
0
votes
1answer
32 views

set timeout for session using zend

How do you renew a session everytime a user requests a page?I am using the code below but does not seem to be working. $zend_authNS = new Zend_Session_Namespace('Zend_Auth'); ...
0
votes
1answer
29 views

Saving session data before session timeout?

Basically what I'd like to do is to instruct my application to write the session data to a MySQL database before timing out and deleting it from memory. For example, say I have a User bean that ...
-1
votes
1answer
32 views

Prevent session timeout using javascript [closed]

I have write some javascript code in my application to prevent sessions timeouts for a specific type of user. The timeout is controlled by server. How shuld I do this?
0
votes
0answers
11 views

WARNING_BEFORE_TIMEOUT in Oracle 10g

I am using Oracle 10g. I know there is oracle.adf.view.rich.sessionHandling.WARNING_BEFORE_TIMEOUT parameter in Oracle 11g but it seems that doesn't work in 10g. Is there some option to do this in ...
0
votes
0answers
36 views

Configure session timeout in webdav Alfresco

i want to configure Alfresco webdav server in order to logout after 10 minutes from authenification. Do u know please how to do it ?
-7
votes
1answer
49 views

Undefined variable: _SESSTION [closed]

I am trying to create a session using t he following code, but its giving me an error message. Kindly check it. <?php session_start(); $_SESSION['id']= 'Taha'; ?> <Form action= ...
0
votes
0answers
11 views

Javascript to hit a page for session keepalive, but not change data on open page

So I have an edge case that I'm working through in which I have this code to keep a page alive: $(document).ready(function(){ s=self.setInterval("keepSessionAlive()",840000); }); function ...
0
votes
0answers
24 views

MVC 4.0, iis express, visual studio 2012 forms authentication and session state timeout issue

I have created a new MVC 4.0 application using the forms authentication template which comes with visual studio 2012. All works fine and I can login and logout and I am directed to my home page after ...
1
vote
1answer
38 views

Zend\Session\SessionManager and cookie_lifetime

I'm seeing some odd and frustrating behavior with ZF2 sessions and timeouts. Here's the code I use to set up the session: $sessionConfig = new \Zend\Session\Config\StandardConfig(); ...
0
votes
1answer
108 views

MVC 4 Session Timeouts, Ajax polling

I'm looking for a way to prevent the SessionState from refreshing when I make an AJAX post to a controller. This controller returns a JSON true/false object if the SessionState has expired. Public ...
0
votes
1answer
37 views

automatic session timeout iphone

I am developing an Iphone app for which I need to perform the automatic logout in the background itself, i.e after the Home Button for Iphone is pressed. I have tried the following code for session ...
0
votes
0answers
27 views

How to handle session timeouts in Visualization page

I have a tomcat/java based web application which has some graph (data visualization) pages. These graphs constantly poll the server to get data for graph. I want to add a session timeout message. ...
0
votes
0answers
50 views

Session timeout when using SSL for an application

We are currently having a jboss server which has two profiles. Each profiles have a different application, Application A and Application B are in the profiles. When we use SSL in App B there is a ...
0
votes
1answer
72 views

IIS 7.5 Session times out at 30 minutes regardless of all other settings

We have a ASP.Net MVC Web Application that keeps timing out after exactly 30 minutes. In the web.config, I set the sessionState timeout value to 500 minutes. After 30 minutes, the session still ...
0
votes
1answer
87 views

Session Time Out Priority. Time out described in which file has more priority? Global.asax or web.config file

I have a doubt regarding session time out. In web.config file I am giving the session time out like below. <sessionState mode="InProc" cookieless="UseCookies" timeout ="30"/> In Global.asax ...
0
votes
0answers
38 views

c# asp.net 3.5 MS SQL 2008 IIS7

I have designed a large 3 tier web application for on-line accounts. Application works perfectly in debug mode and when hosted on in-house windows 2003 server. When I host it on a web server, I keep ...
0
votes
1answer
69 views

Difference between Session Expired and ViewExpiredException

I've come across many solutions for the two 'huge' problems Session Expired ViewExpiredException My Question: What is the difference between them? I'm using WAS and I observed Restarting the ...
0
votes
1answer
138 views

how to extend session timed out with jquery ajax

I have a web page with a editable jquery grid on it. I am using it with asp.net web form. The web form authentication is set to timeout after 20 minutes. Sometimes, users need to update large number ...
1
vote
1answer
92 views

Coldfusion 10 sessionTimeout is not work

I've created the following Application.cfc and everything is working except for one thing. I'm trying to get the Application.cfc to logout after a short period of inactivity. However, none of my ...
0
votes
2answers
49 views

CakePHP (or just PHP) get session duration

Is there any way to get the duration of the user's session? If the user logs in I can save the initial time. If he logs out, I can get the final time and calculate the duration of the session. What ...
0
votes
1answer
15 views

Force a web page time out

I have a web page that calls an external web service which returns some XML - calling it like this: Resp = Req.GetResponse() *As HttpWebResponse I put a try catch around this in order to capture ...
0
votes
0answers
33 views

How better to handle sessions in SQLSoup?

The SQLSoup makes it very easy to deal with existing DB schema, it nicely maps existings SQL tables into objects, e.g. "students" table in database "university": import sqlsoup university = ...
0
votes
0answers
55 views

sess_expiration not lasting declared length in Chrome - CodeIgniter

I noticed that in FF and IE10 the contents of my shopping cart (I'm using the cart class) are in tact after a two days have passed, but in Chrome the content has been deleted. This is my session ...
0
votes
0answers
40 views

Set duration of CakePHP session after successful login

I have a CakePHP application that allows login using basic Auth. Each user has a specific role such as "normal", "admin", etc.. Is there a way to set how long they can remain logged in for before it ...
0
votes
1answer
53 views

Sessions never expire in rails 3.2

My sessions seem to never expire, even though I configured my session_store.rb file to have this code: Barcadia::Application.config.session_store :cookie_store, ...
0
votes
2answers
146 views

session-timeout in JSF

I use the following codes to create a session object in JSF. The problem is that after sometime when I am trying to access userdet object it is giving me exception possibly because of session timeout. ...
1
vote
2answers
139 views

Create Action which doesn't affect session timeout

In my ASP.NET MVC 3 application, I have a timer which executes a controller action every period of time. This way my session is never timed out... I don't want this action to reset the session timer ...
0
votes
0answers
66 views

Behaviour of HTTPSession and Spring session scoped beans

I'm having an issue regarding HTTPSession and Spring beans that I quite don't understand. In web.xml I've set the session timeout to 1 minute: <session-config> ...
0
votes
1answer
125 views

Express.js + Passport.js + no-ip.org issue: dynamic ip server user authentication keeps getting reset

I've tried searching far and wide for a solution to this. The app works properly when run as localhost keeping users authenticated for an extended period. But when I run it on my server and log in ...
1
vote
2answers
87 views

Session logging out in 30 min irrespective of activity

I have set <session-timeout> as 30 min in web.xml. If I am not wrong this one supposed to logout the session in 30 min only when the session is inactive. But in my application user is logged out ...
0
votes
1answer
86 views

why not session data is stored in table duration do login in site?

I am New Comer in PHP with MVC Codeigniter Framework. I have a issue about session storing in table(ci_sessions) with codeigniter.and i have also set config.php file like- $config['sess_cookie_name'] ...
2
votes
2answers
279 views

What is the best way to implement idle time out for web application (auto log off)

I want to implement an idle time-out for the web application that we are building. I had earlier achieved this using AsynchronousSessionAuditor from codeplex, which essentially looks for the ...
3
votes
1answer
56 views

Contdown on Servlet Session

I need to create a countdown on the servlet´s session to fire events when X minutes to expire... So, there is a way to know how many seconds is remaining to finish the session?
1
vote
2answers
108 views

How to save session data in table without getting expired session? [duplicate]

I am new for php with codeigniter. I have a issue about php session with codeigniter mvc framework. When I have used table(ci-sessions) to store session data when I can not login in our site due to ...
0
votes
2answers
42 views

How to detect page is not in use for more 10 min?

I want to set session as unlimitted by refreshing page every 10mins. So i have to know page is using or not using right now ? My refreshing code is working fine: string _CurUrl = ...
1
vote
1answer
51 views

How to avoid too many sessions stored?

I'm using Perl Catalyst with Catalyst::Plugin::Session::State::Cookie and Catalyst::Plugin::Session::Store::Redis. I have at most 2,000 users logged in, but I have more than 2 millions keys in my ...
0
votes
1answer
118 views

User Session Times out if multiple pages are open and one is left inactive using timer in JS/JQuery

I have a user activity on my page. When user is inactive (didnt move mouse) for 30 minutes it prompts user warning that session will expire soon. If user does not click on OK button and stay inactive ...
0
votes
0answers
57 views

Longterm usage & conflict of Session / TempData

I've an MVC3 web app which uses the default "in process" session. I've the PRG pattern in place - that is while postback if my modelstate is invalid I store the model in TempData and redirect to the ...
1
vote
1answer
108 views

Unable to serialize the session state

i am tired wondering the issue for this problem. have read so many blogs and forums for this but i am not able to find out the problem. I am using "SQLServer" mode to store session. Everything is ...
0
votes
2answers
474 views

asp.net session state mode “SQLServer”

"My website is LIVE. And this problem is related to configure session timeout on LIVE server and not in localhost." I have a problem with session expiring too soon. link in 2-5 minutes only. I tried ...
-3
votes
2answers
304 views

How to log-out android application when it is not using [duplicate]

I am developing an Android application in which I can login with a particular userid and password. I want my application to be able to automatically log the user out when the application state is idle ...
1
vote
1answer
99 views

php session on page 1 and page 2

Here is my question, I have lets say 2 pages page 1 and page 2, what I need is to open session and set cookie on page 1 that will remain for 1 hour and will be reset on every page refresh. Now the ...
0
votes
0answers
158 views

“request time out” error in video sharing on facebook using iphone app

i am using this code to share video on Facebook and it shared small video successfully but when i tried to share large video file like 50 mb or 100 mb using this code it gives the "request time out" ...
0
votes
0answers
138 views

Facebook SDK PHP, login and logout available soon

I am a beginner in Facebook Sdk php, and I try to search a solution for the behavior when have more then one user (with FB Account) shared in the same computer, and understand better the logout of ...
0
votes
1answer
302 views

jQuery load function handling session timeouts

The jQuery load function is nice but how do you handle session timeouts? I used it to add new content into a div but if my session times out, the login screen appears in that div instead of in the ...

1 2 3 4 5 13