Out Of Process Session Management

  • Thread starter Thread starter Maximus
  • Start date Start date
M

Maximus

Hi Everybody,

I am running the out of process session management. I have certain
information about the clients, which I need to delete when a session
ends. However, Session_End event is not supported in out of process
session management.

Can anybody help me with this? I thought this might be a common problem
for out of process session management and there might be some standard
solution of handling this.

Any help will be greatly appreciated.

Thanks.
 
If you are worried about storing sensitive customer data in session, the
most secure way is not to do it. Even if you were able to get Session_End,
there's no guarantee that you will actually get that event, various other
circumstances may occur which prevent you from getting it.

You may want to review this which has interesting comments on Session_End
http://www.asp.net/Forums/ShowPost.aspx?tabindex=1&PostID=7504

Perhaps you could store that data elsewhere (if it comes from the client
browser, perhaps store it at the client? viewstate?)

Heres a link on security in your ASP.NET app
http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=055F
F772-97FE-41B8-A58C-BF9C6593F25E

Sorry this isn't a solution, but I hope the info helped.

Andy Mortimer [MS]
Please do not send email directly to this alias. This alias is for
newsgroup purposes only

This posting is provided "AS IS" with no warranties, and confers no rights.
OR if you wish to include a script sample in your post please add "Use of
included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm"
 
Back
Top