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

Android Session mangement not working

I am trying to manage sessions in Android. I am using Shared Preferences to store the user data. The problem arises when any user logs in perfectly and the home page of my app should get open now, but the Logcat displays the error that there is no…
0
votes
1 answer

Yii external session Management

I am newbie in yii framework. I have a problem with yii external session management. I have created in simple php page with session. In that page link to the yii application. when i click the link, the php session will continue in the yii…
Vijaykumar
  • 11
  • 1
0
votes
3 answers

Override session management via deployment descriptor

We have a WebSphere Application Server 6.1. Session management is configured with replication and timeout etc... (the obvious). An new project needs some other settings for session management (longer timeout, no replication necessary). There is a…
dertoni
  • 1,763
  • 2
  • 24
  • 47
0
votes
1 answer

Can't address $_SESSION array after destroy and session_start()

I'm using $_SESSION to store data from a multi-page form. Everything was working wonderfully until I finished a submission and ended the session to prevent the same form data being replicated should the person try to re-enter the form. When the form…
o2fill
  • 31
  • 1
  • 4
0
votes
0 answers

Netty custom unique channel ID while or during handshake

I have used the client/server chat example to implement my SSL requirements. The main part of my requirement is session management. I want to: Create SSL (TLS) "tunnels" from my clients to the server The SSL tunnel (channel) will only be opened and…
ALtheViZ
  • 1
  • 2
0
votes
1 answer

advantages of express-session-mongo vs rolling your own

I am new to nodejs/mongo so i ended up rolling my own session middleware because i didnt know about express-session-mongo. In my middleware, i store the users id in the session (via express's session middleware), and then load the logged in user…
mkoryak
  • 57,086
  • 61
  • 201
  • 257
0
votes
1 answer

Single page app, no cookies, tomcat session management

Here's the scenario: Single page app (AJAX-based), in an environment that disallows cookies, but still requires sessions, and Tomcat (or JBoss) in the back-end. What's the best and easiest way to still have the back-end container (Tomcat) manage…
Dan
  • 65
  • 8
0
votes
0 answers

Rails 3 session management with ajax

I am working on a website that (in nature) expects a client_idto be passed to the application to turn on/off branding (depending on the client_id). Here is my ApplicationController helper_method :current_client before_filter :set_client def…
dennismonsewicz
  • 25,132
  • 33
  • 116
  • 189
0
votes
1 answer

Session sharing across multiple client server requests and among multiple servers

My question is on ASP.net session management. In the current web application we have "sticky sessions" (user is always redirected to server it started talking to). Below is my problem statement. From one of our client there are huge number of…
0
votes
1 answer

session management in android

I successfully developed one login form with mysql database via soap webservices.Here I wish to make session management but I am not able to develop. Please help me. If u need coding part refer to this link(me used same code for my login form): Here…
Krishna Veni
  • 2,217
  • 8
  • 27
  • 53
0
votes
1 answer

session management is android calling soap webservices

Hi i developed one login form calling soap webservices.it is success fully worked for me...But now i implement the one part.here i will make session management...how is making session management in dis login form.please guide me. dis is my android…
Krishna Veni
  • 2,217
  • 8
  • 27
  • 53
0
votes
0 answers

What is a session cookie?

I was reading this article and I was wondering, what exactly is a standard session management cookie (SSMC)? It also recommends that the SSMC should be a session cookie and therefore expire when the browser is closed. Because it's an 'improved'…
Asaf
  • 2,005
  • 7
  • 37
  • 59
0
votes
4 answers

State management issue

I have three websites which are pointed to, by different domain names. The issue is: If a user logs in at one domain, it is not reflected in the other two domains, and similarly for logout. How to maintain session state for two different domains?
shakti
0
votes
2 answers

Implementing session management

I'm implementing session management and am currently storing 4 types of info in the db: user_id session_id (hash) insertion_time (for timeouts) persistency (if user has a persistent cookie) It is possible for the user to have multiple sessions…
Frank Vilea
  • 8,323
  • 20
  • 65
  • 86
0
votes
1 answer

The value 'hibernate.current_session_context_class' is invalid according to its datatype 'String'

I have an app that uses Nhibernate. This is my first app using it so I am newbie. I am trying to test my first get method. protected void Button1_Click(object sender, EventArgs e) { IList persons = SessionManager .SessionFactory …
user742102
  • 1,335
  • 8
  • 32
  • 51
1 2 3
19
20