0
votes
0answers
54 views

Worklight: Challenge-handler not working as expected

I used sample challenge handler that comes with Form Based Authentication module. I modified it as per my requirements. In my App, I have one Landing (home) page , where i have link to a login page. ...
4
votes
1answer
86 views

creating an automatic logout page in php

i am trying to write a automatic logout script which seems to work but not to my expectations,i do not know what exactly im doing wrong,i want to put the timeout.php on every page so that when the ...
0
votes
1answer
24 views

time-out asp.net gives error

When a user loggs in on the website, he can do what ver he wants(Which is correct). But if he's away for a few minutes somekind of time-out happens. This is causing the following error: Object ...
0
votes
0answers
72 views

Session timeout too fast in asp.net

I have develop a website where the session timeout too soon. I want to extend my asp.net session into 2 hours(120 mint). The app pool idle time is intact as i have no permission to change it. In ...
2
votes
2answers
59 views

PHP Sessions expiry time - keeping session alive for a specific number of minutes/hours/days

I have a site that creates a Session for shopping carts. $_SESSION['cart']=array(); It seems as if the server automatically kills the session after X time of inactivity, I assume this is set in ...
0
votes
0answers
15 views

How to tie/sync Session Timeout together of subdomain sites

I have two sites a.mysite.com2 minute session timeout b.mysite.com5 minute session timeout While i navigate around on b.mysite.com i dont want to have my session killed on a.mysite.com I'm able to ...
0
votes
3answers
67 views

PHP Session ID - how long is a SID valid? [duplicate]

Theoretically, if a PHP session ID is stored in a cookie that has a lifetime of 365 days, will the session ID resume the right session data on day 365 or will the related session data be timed ...
0
votes
0answers
37 views

Google Analytics v2 for iOS - How to stop session

I'm testing Google Analytics v2 in my iOS app, all is working fine but after exiting the application the session never ends. I tried without modifying the default timeout of 30 seconds, setting it ...
0
votes
1answer
87 views

CometD long polling making session to never time out

I am using ExtJs + CometD on ui side and Spring + Jetty as backend for my application. The user gets authenticated using spring authentication manager (j_spring_security_check). The normal http ...
1
vote
0answers
35 views

How do I manage session timeout if I am using SVNKit?

I am using SVNKit 1.7.8 java API. <dependency> <groupId>org.tmatesoft.svnkit</groupId> <artifactId>svnkit</artifactId> ...
0
votes
2answers
152 views

JSF Catch Session Timeout

Is there a possibility to "intercept" the Session timeout? I tried the HttpSessionListener, but as far as i can read, the Session is already destroyed, when the ...
1
vote
1answer
47 views

H2 database WebServer session timeout

How can I change the session length of the H2 database WebServer? I'm using it only for development on my local machine and the default 30 minutes session length is too short as it often times out.
3
votes
3answers
366 views

Session Timeout .NET

I searched but I dont`t find any specific answer for this question. How I can get value in server how much time left, before session expires? My session settings: //timeout for example 10 min. ...
0
votes
0answers
167 views

spring session time out handling

I saw a lot of Q&As about using spring to control the timeout of AJAX requests, but now I am working onetimepassword checking system, so I need a session control method to make sure that after ...
1
vote
2answers
84 views

java servlet what happens if the session gets invalided while a file is being uploaded?

I'm using Apache's commons.fileupload to upload a file to a server via a servlet. The file data is streamed from the Http request object to a network destination (which may have a slow connection). ...
0
votes
1answer
50 views

Internal server error when user's IP changes (probably has something to do with PHP session file locking)

I have a website written in PHP. One of the users is in a building where they have two internet connections with two ISP's, but one network. So, any computer on the network may connect through either ...
0
votes
2answers
122 views

Set timeout for sessions

I've read some others threads from here and outside, but nothing worked... I have a few Sessions like (login, column's value ...). And I want to set a time to the Sessions expires... I've tried: ...
0
votes
0answers
268 views

Tomcat session-timeout response?

I have app works on tomcat. App is build in Struts2. When session not contain user object ( session expired, user logout etc. ) I have interceptor which redirect user to the loginPage. This works ...
0
votes
0answers
162 views

JSF 2 Session Timeout Issue with Iframe

I have an application where i have to include jsp files in JSF2+icefaces3 project.I have acheived that by using iframe in jsf to include the jsp files.The problem is that jsf session ...
1
vote
3answers
642 views

Reset session timeout without doing postback in ASP.Net

Is there any way to reset the session timeout without doing postback? In this scenario I don't just want to hide the postback from user, I need to reset the timeout with out postback. On my page I ...
1
vote
0answers
196 views

jsf session timeout loop

I've a problem with JSF session handling: At first i got everytime a viewExpiredException: javax.faces.application.ViewExpiredException: viewId:/anyForm.jsf - View /anyForm.jsf could not be restored. ...
0
votes
3answers
891 views

php session timeout

As being new to this,i am trying to implement a session timeout after 100 seconds if a user does not click on "any other links" i.e stays on that page without any activity..i used the following php ...
0
votes
0answers
190 views

PrimeFaces timeout code

I'm relatively new to the whole JSF programming world, and when implementing a timeout feature using PrimeFaces, I decided to use idleMonitor and polls. This method works, but I was wondering if the ...
2
votes
2answers
71 views

How to create timeout on external secured website

The Program I currently have built a web based Kiosk system "all client side" that has 5 selections to choose from. 4 of those options are links to vendors that we use containing logins for banking ...
2
votes
1answer
113 views

How to warn user with a modalDialog that the session has expired?

I want to warn user that his session has finished before redirect to the login form. How could I show a modalDialog when session user has finished to block redirecting until he click the window?
0
votes
3answers
41 views

How to implement or configure hard session expiry in ASP.NET?

I can set a 20 minutes timeout for the sessions which means if the user doesn't make a request within the 20 minutes period, his/her session expires. <sessionState timeout="20" /> But what I ...
0
votes
1answer
107 views

Do some functionality on session timeout

How can i write some code like maintaining timeout in database or logging task, when session get timeout automatically after specific time(default 20 mins).
0
votes
0answers
132 views

html Refresh page 24 hours

I have this code so I can Refresh the page with it : <META HTTP-EQUIV="Refresh" CONTENT="10;URL=index.php?code=<? echo $code_number; ?>"> But the problem is when I use this code the ...
1
vote
2answers
289 views

Session - timeout - idle handling Multi-treads in Java

I am trying to get my head around session - timeout - idle handling Multi-treads in Java. I have a server & client application comunicating via telnet where I need to check if the user has been ...
0
votes
2answers
381 views

Struts2 session timeout intercepter not working

Hi friends am new bee in struts2 i am developing application in which i have used session timeout interceptor, My Problem is timeout is not happening below is link from which i have referred the code ...
2
votes
1answer
350 views

How can I set the view timeout?

In our JSF2 project on JBoss 7.1.1, we define a session timeout in the web.xml and it works just fine. However, sometimes we're getting view expiration, leading to errors like this one even if the ...
0
votes
0answers
31 views

Session Gone Timeout after Offline process on mobile

I have a simple question, that may have a simple answere. I've got a webpage that has Session.Timeout = 20mins. Then got a Iframe that is refreshing every 15min and setting the Session.TimeOut to ...
2
votes
1answer
852 views

Asp.Net (MVC): Which session timeout is what?

I've made one Asp.net MVC website, and I'm very confused between the different timeout settings. What is the difference between: SessionState Timeout in web.config: Application pool timeout ...
0
votes
0answers
160 views

Annotate method for handling http session timeout (JEE6 / CODI)

How to annotate a method for handling HTTP session timeouts in Java EE? I'd welcome a JEE6 annotation as well as a MyFaces CODI or SEAM 3 annotation. Point is, temporary files are generated on the ...
0
votes
2answers
433 views

On Session Timeout Login.gsp is rendered within the <body> tag instead of redirecting to a new gsp page

I am new to Grails and working on a project which has just 2 controllers one is for login and the other is for a explorer (similar to a windows explorer with left panel displaying a tree -like ...
0
votes
2answers
515 views

Notify user of session timeout asp.net VB

I want to notify the user as soon as the session expires.. an alert and redirect to another page. What is the best way to do it considering I have no master page. Although most of the pages inherit ...
0
votes
2answers
90 views

stop a session from timeouting on PHP

I'm making a project on PHP and it pretty much doesn't involve any human intervention, in other words, I'm making a special script that should run for a long time (a user visits my website and the ...
10
votes
1answer
1k views

Is there an easy way to make sessions timeout in flask?

I'm building an website with flask where users have accounts and are able to login. I'm using flask-principal for the loging in part and the role management. Is there a way of making the user's ...
2
votes
1answer
807 views

PHP session timeout is 0, but session still expiring

I am running Apache 2.2 with the latest build of PHP and mysql. In my PHP.ini file, I can see the session timeout is set to 0, meaning the session stays live until the browser closes. I have noticed ...
0
votes
2answers
259 views

A tiny ajax ping to prevent session timeout?

On my website, members can write articles to share info with others in their community. I get random reports that the submit fails, and it appears it is because of session timeout. If I create a ...
1
vote
1answer
2k views

PHP/Javascript Session Timeout with warning

Does anyone know where I can read a tutorial on, or know how to create a Javascript-based session timeout that has a warning built in, and optionally these features: user activity resets the timer ...
1
vote
4answers
497 views

PHP: “The website has too many redirects” when use php sessions with time

I've a problem when use this code in my page: Code with expire session <?php session_start(); if(!isset($_SESSION['clientmacs']) ) { header('Location: index.php'); } else { if(time() - ...
0
votes
5answers
3k views

PHP session timeout script

I have this code that logs a user out if they don't change pages for 10 minutes. $inactive = 600; if(isset($_SESSION['timeout']) ) { $session_life = time() - $_SESSION['timeout']; ...
1
vote
1answer
524 views

Single Page Application with ADFS - Timeout Issue

I am creating a single page application (SPA) with ASP.Net MVC3 and ADFS (using passive federation). Everything is working as expected with the exception of what I will call "re-authentication from ...
-2
votes
3answers
1k views

Increase ASP.NET page timeout

I have a long running method which can take a minute. On my local, it's OK, but on the server, I get a 504 response. I assume this means the page is timing out. Is it SessionState that I need to ...
1
vote
0answers
234 views

Freeradius: session timeout for multi concurrent login user

I would like to set session timeout for an account, for example, 3 minutes. If there are two or more users using this account at the same time, they then share the timeout. How can I achieve this with ...
0
votes
0answers
330 views

how to redirect to a action method after session timeout for a ajax call in asp.net mvc 4

I have used asp.net mvc 4. I have a link. when click the link i call a ajax post for some action method. I want some change in the link, that is after session time out if the user click the link it ...
1
vote
1answer
411 views

ASP.NET MVC Application Timeout Not Working

In my Web.config file, I have been trying to set the session timeout. I used the following code: <configuration> <system.web> <sessionState ...
1
vote
2answers
279 views

PHP session time out on browser open

I know there are many threads regarding PHP sessions while ajax queries etc... but my problem is, I have an ajax grid (build after the page load), which I allow to edit only when use is logged on. I ...
0
votes
2answers
892 views

Session timeout using Membership of ASP.Net in prod, not in dev environment

When I login to my webform in my production environment ( IIS 7.5 + SQL Server 2008), my session expires after just a few couple of seconds (less than 1 minute). But when I do the same in my dev ...

1 2 3 4