inproc

Preserve ASP.NET InProc Session when W3WP (IIS) Process Recycles

Hello, I understand that all InProc session data is always gone when its w3wp owner process recycles as it only resides in the w3wp memory. I wondered though if it is possible to cache the session data when recycling happens somewhere external to the process, and then reinject (and rebuild) the session when it comes back up. That way I...

InProc Session State not working

Anyone have any ideas why a servers InProc session state would not be working? Is there a manual reset for it, or a way to check? Thanks Session mode is InProc, timeout is 25 minutes. At this time I'm unsure if the Session object is null, or if the session object is empty and cannot be accessed. I'm thinking it could be a cookie is...

Switched from inproc to SQL Server gives me SQL timeouts (no connection max pool size, typed datasets)

Hello everybody. Here is my situation: I have a web and database server (SQL Server 2005) in a LAN. The webserver(iis6) has several application pools and sites run fine with asp.net session inproc. both servers run win 2k3 Now I switched from inproc to SQL Server and I get a lot of SQL timeout expired messages. But only from one web ...

Problem retrieving multiple instances of the same asp.net session variable

I'm having problems with retrieving multiple instances of a session variable from an InProc session state. In the following code I persist a simple BusinessObject into a session variable on the Page_Load event. On the click of a button I try to retrieve the object back into 2 new declared instances of the same BusinessObject. All work...