Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
85 views

MVC3 .NET Session randomly losing session value and is return as null

I have a production issue with In-Proc session state. Our application is base on MVC 3 .NET framework and is integrated into our site running Sitecore CMS. Our users have been experiencing "Object ...
2
votes
1answer
334 views

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

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 ...
1
vote
3answers
96 views

Which one is better, InProc or SQL Server, for Session State mode in asp.net?

I am developing an ASP.NET website. I want to know which one is better in session state mode: InProc or SQL Server? I need to hear about your experiences on this issue. Another question is about ...
1
vote
0answers
47 views

How to communicate beetwen parts of out-proc *.exe COM server?

We have *.exe application which is also out-process COM server. The main thread is doing some network routine: it receives data packets and puts them into queue. COM client, VBA for example, uses ...
1
vote
2answers
216 views

ASP.NET SessionState timeout

I use ASP.NET website on IIS7 where in web.config I have: <sessionState mode="InProc" timeout="20"></sessionState> But session doesn't keep 20 minutes, it works very strange, sometimes ...
1
vote
2answers
57 views

Unwillingly calling QueryInterface via RPC

In my application, I create an object A, that creates an object B, both via CreateInstance. Both objects should live in the same process. Now I see that object B, when asked for a certain interface, ...
1
vote
3answers
340 views

Azure and In Proc Session

I have my site (ASP.Net 4.0 C#) hosted on Azure server with multiple instances. My session state mode is "InProc". Somehow its not working on Azure instances, it doesn't maintain the state properly. ...
1
vote
2answers
369 views

IIS ASP.NET InProc session variables randomly not written to session

There are reams of info out there about things causing InProc session to drop session objects, but that's not what's happening here. We're missing individual variables within stable InProc session ...
1
vote
2answers
314 views

Common ASP.NET Intermittent Hang-Ups

Recently, we've encountered some strange intermittent issues in our ASP.NET app. These issues would include: Static Variables becoming un-initialized Background threads aborting (InProc) session ...
1
vote
1answer
309 views

How much memory is the InProc Session State using on my ASP.net Server?

Is there any way to tell how much memory the InProc Session state is using for an ASP.net site at any one time? IIS7, ASP.net 3.5, Windows Server 2008 R2.
1
vote
2answers
438 views

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 ...
1
vote
1answer
604 views

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 ...
1
vote
3answers
781 views

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

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 ...