Tagged Questions
0
votes
1answer
43 views
Session.Abandon does not automatically redirect to loginurl in asp.net
This seems to be a very trivial question but still I am not able to get it running. I am building an asp.net web application and I am using forms authentication here. The following steps I have ...
0
votes
1answer
270 views
Querying session data when using StateServer service
Does anybody know of a way to query across all active sessions when using StateServer service in a .NET 4.0 web app?
In my scenario, I am setting a piece of session data when the user navigates to ...
6
votes
2answers
735 views
InProc vs. AppFabric session state with single web server
I have an ASP.Net MVC application which makes significant use of session to save state (including large data collections). At present, it is hosted on a single web server. The session is set to the ...
0
votes
0answers
144 views
With Inproc Mode Session Variable is not working
In application I set the session state mode to InProc; when I run my application then it will work for one user perfectly, and it will give the result as per expectation but when I create a new user, ...
1
vote
1answer
177 views
How can we change session state of a website from one state to another
Basically my question is i have a website which was developed around 3 years ago, while development it was proposed that this site will be used by few people on internet.
But now it seems like many ...
0
votes
1answer
168 views
Enforce serializable session state access for InProc?
I have heard advice in the past to use SqlServer / StateServer early on in a project, so when you scale you don't fall into the trap of a developer using non-serializable objects InProc and it ...
4
votes
3answers
3k 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
2answers
1k 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 ...
2
votes
1answer
523 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 ...
2
votes
2answers
1k 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 ...