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
1 answer

Force tomcat not to invalidate session on shutdown

My project uses custom session invalidation mechanism. It requires to send notification with invalidation cause, for example - if invalidation happends by user request - invalidation cause is USER_REQUEST, if shutdown of the server - then the cause…
Roman Makhlin
  • 973
  • 1
  • 11
  • 27
0
votes
1 answer

ADF and EBS, ICX SESSION is not valid

I'm trying to launch ADF sample Session Management App that is provided in Oracle DOC.974949.1 , with EBS 12.2.6. I have done everything that is written in the Oracle doc. Still, session management is not working. When I start the EBS function…
0
votes
1 answer

How to redirect web application flow to specific page when session ends?

I have a web application developed on AngularJS / Javascript, back-end is Java / Spring. I have an issue related to session management for my web application. I have set the session timeout using the web.xml session-timeout parameter in…
0
votes
1 answer

Session management in jsp project

I am developing a college project and i will try to explain my problem using a small example. Below there are 3 jsp pages (index.jsp , test.jsp , logged.jsp) and i want that if the user try to access logged.jsp directly by entering url…
BlindCoder
  • 3
  • 1
  • 7
0
votes
1 answer

How Can I Manage Session Data in Node.js Without Using the Request Scope?

I've been experimenting with several flavors of session management in Node.js: node-session, express-session, etc. These are configured in app.js, and implemented at the request level (e.g., req.session) in the routes. To use session management to…
JRomeo
  • 543
  • 1
  • 4
  • 20
0
votes
0 answers

Session management in Apache CXF via NonCookie means

This is for use with Apache CXF based SOAP service. I have a particular scenario where the client is not able to return a cookie or keep track of a cookie. However, I am attempting to handle the session support via URL rewriting. What I'm looking…
monksy
  • 14,156
  • 17
  • 75
  • 124
0
votes
1 answer

Single sessions in LogicalDOC BE

For a project that I am recently assigned to, we used to work with the free LogicalDOC Community Edition. We are considering buying the business edition, however, in this edition you only get a limited number of consecutive sessions. The project…
0
votes
1 answer

Trying to pass session variables from ASP to ASP.NET

We are doing a slow rollout of pages. basically the Login page is in ASP.NET and the old pages are in ASP Classic which are placed in an Iframe below the menu. They have two different servers that process the menu/pages. What is the best way to pass…
Steve
0
votes
1 answer

session management in distributed system

I have two web server (server1, server2) and multiple web application (20+) are running. Some app(10+) needs ldap authentication to get access. I wanted to implement 'single sign on' kind of stuff and maintain session with ldap authentication. My…
Cereal_Killer
  • 304
  • 2
  • 13
0
votes
1 answer

Spring MVC AngularJS Page Refresh/Redirect

I am using angularjs with spring mvc in my application. It is a single page application where there is a login button and multiple tabs. Tabs are not visible unless the user logs in. After user logs in, the tabs will be visible (login button will…
Maz
  • 653
  • 12
  • 22
0
votes
0 answers

Sharing Sessions on different Asp.Net pages of different Applications in same domain

Basically we are working on various web applications which are updated according to the time needs and Now the situation arises are as follows:- We have one Product based website which consists of several webpages which are belongs to different Web…
0
votes
0 answers

Session management using nodeJS without a session store

im fairly new to MEAN stack development. I've developed a site as a project im working on using only node, express, angular and mongo. Ive gotten the login, register and logout web service calls to work perfectly but having a difficult time to…
0
votes
1 answer

issue with login to web server

i have an issue with my project. 1. I have a web server in www.kinandayu.com , i success to make a sign up system in www.kinandayu.com/data_signup.php 2. I want to make a login system in my aplication. I have code like below : package…
mario margo
  • 71
  • 2
  • 14
0
votes
1 answer

Http Session for unauthenticated application

I am implementing one web application which is sort of unauthenticated for new user, and it will be used by another web app i.e. not used directly by end user, but the parent web app is not in my control. So through my web app new user can buy the…
Girish
  • 1,717
  • 1
  • 18
  • 30
0
votes
1 answer

laravel session management in subdomain

I am struggling to manage session between domain and sub-domain my domain is example.com having own laravel(5.1) folder structure and other sub-domain having its own laravel(5.1) folder structure domain and sub-domain access same database below…
oxygen
  • 81
  • 8