Questions tagged [session-management]

Use tag when there are questions specific to session management in any domain (web, mobile, etc)

As per introduction of a Session:

Session management is the technique used by the web developer to make the stateless HTTP protocol support session state by making use of session variables.

For example, once a user has been authenticated to the web server, the user's next HTTP request (GET or POST) should not cause the web server to ask for the user's account and password again.

298 questions
0
votes
0 answers

Rails 3: Before Filter Issues with Session Management

I am working on an application that will ultimately help my company move to a universal registration/activation process to help support a multitude of products. Upon a new user registration or activation (using a group code) the "single" system…
dennismonsewicz
  • 25,132
  • 33
  • 116
  • 189
0
votes
2 answers

NHibernate's criteria.List() hangs when lazy property exists on entity

I've been getting some extremely bizarre behaviour where NHibernate queries start to hang. I've made a demo project that exhibits this behaviour in a repeatable fashion. You can download the project here Here's the offending code: public…
Scott Muc
  • 2,873
  • 27
  • 38
-1
votes
1 answer

Update a sessionManager

Hellow, I have a long list of user infos stored in sessionManager. I am looking for the best way to update the user information without having to create again the createUserSession I have that session manager class: import…
ankalagba
  • 94
  • 1
  • 8
-1
votes
1 answer

Spring boot security avoid specific user session expire

Hello everyone I've got my spring boot application on Apache Tomcat server and it works fine. But now I need to avoid session expiration for an specific user. How could I do that? I've been searching ways and found that handler interceptor could be…
Maya
  • 678
  • 1
  • 6
  • 12
-1
votes
1 answer

In android, How do i save response coming from php login script as shared preference?

i have seen most of the examples of offline apps , but what should i do if my response comes from php api ? Basically my app logins and give request to an api , and i get a response. Suppose i get reponse as email and a token. So how should i use it…
Robin10
  • 77
  • 1
  • 8
-1
votes
2 answers

Getting lazy initialization exception - no session when accessing model object properties

I am using a Model File namely Document.java and Document.hbm.xml from a jar file . This document class has an object: class Document{ private Signature signature; // other fields // getter setters } with hbm mapping as follows:
Tarun
  • 271
  • 1
  • 6
  • 18
-1
votes
1 answer

Can we put condition before session timeout in spring?

I have defined below rules for handling user session. When user logs in sessioncreate() of HttpSessionListener will be called and will set user status as online in database. When user logs out sessiondestroy() of HttpSessionListener will be called…
-1
votes
2 answers

Redirect the application to Home screen after screen timeout

I am creating an application with possible high security in it. i simply want an application to redirect to its home screen as soon as the screen time runs out.. or after 1 minute when users stop accessing. Thanks
-1
votes
1 answer

how to do session management in Netsuite using Suitelets?

i have to perform session managemnet like we used to do in servlets and jsp but by using Suitelets. How to implement it in netsuite?
xerxes
  • 11
  • 1
  • 3
-1
votes
2 answers

Need help with web application settings

Pls give me the solutions for this two problem, which i was asked recently in interview. Prob1: Suppose I have application with 10 admin, so they can change the data anytime their having own userid and password. For example, one user retrieve one…
Sumit
  • 23
  • 2
  • 6
-2
votes
1 answer

Warning: session_start(): Cannot find save handler '/home1/proctekw/tmp ; handler used to store/retrieve data' - session startup failed

Unable to start session due to the warning. I am trying to host my PHP website through BlueHost.com. But it keeps giving me warnings saying session startup failed. I tried to change the save handler by making new folder but still it the same. Can…
-2
votes
1 answer

Session Management in an android

Can anybody suggest how to handle SessionManagement in an android app for a login screen after login I have 4 activities. on signing for different users different user's activity opens. I am getting 3 parameters from retrofit:- userId password and…
-2
votes
2 answers

is there a way to filter/suppress HTML from making it to the client?

i'm new to php, and i'm having a hard time establishing proper session mgmt. controls to prevent unauthorized access to a specific section of my site. I'll give an example... myimaginarysite.com/application/index.php has a form to auth the user and…
1 2 3
19
20