J
Jacob Anderson
Hello,
I have a web application running in two configurations:
1. On my local machine running in debug and release mode
2. On a shared, hosted, machine in release mode
On my local machine, the app never loses its session
state (which is how I manage the login state for the app).
On the shared machine, the session state seems to be
reset intermittently. I see this manifested as a user
being "kicked back" to the login screen yet being able to
go "back" to the previous protected page and still have
the session available.
My application stores some data in the session to
identify the user that is currently logged into the app.
I detect when the user is not logged in by doing the
following:
1. Check if the session is new or not
2. Check for the existence of the login state
So I "think" the session is being marked as 'new' on the
shared server, but the login state object is still in the
session.
My configuration on both types of configuration is:
Session mode=InProc
Sesion memory = 1 GB (on the shared server)
ASP.NET version=1.1
Does anyone know what things I should look at on the
shared server in terms of configuration or what-not? I
tried using "forms" based authentication, but could not
ever get it to work properly for the two types of logins
I need to support.
Thanks
-- Jacob Anderson
(e-mail address removed)
I have a web application running in two configurations:
1. On my local machine running in debug and release mode
2. On a shared, hosted, machine in release mode
On my local machine, the app never loses its session
state (which is how I manage the login state for the app).
On the shared machine, the session state seems to be
reset intermittently. I see this manifested as a user
being "kicked back" to the login screen yet being able to
go "back" to the previous protected page and still have
the session available.
My application stores some data in the session to
identify the user that is currently logged into the app.
I detect when the user is not logged in by doing the
following:
1. Check if the session is new or not
2. Check for the existence of the login state
So I "think" the session is being marked as 'new' on the
shared server, but the login state object is still in the
session.
My configuration on both types of configuration is:
Session mode=InProc
Sesion memory = 1 GB (on the shared server)
ASP.NET version=1.1
Does anyone know what things I should look at on the
shared server in terms of configuration or what-not? I
tried using "forms" based authentication, but could not
ever get it to work properly for the two types of logins
I need to support.
Thanks
-- Jacob Anderson
(e-mail address removed)