Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
252 views

Session Management in ASP .NET

Just had a question about session management within ASP .NET. I have looked at the 3 options within IIS (InProc, StateServer and SQL Server) and am having issues deploying session persistence across ...
6
votes
3answers
5k views

SQLServer vs StateServer for ASP.NET Session State Performance

I'm studying for a MS certification and one of the practice tests I'm doing has a question where the point of contention is the performance between storing the session in SQL Server as opposed to ...
5
votes
4answers
967 views

Pros and Cons of using ASP.NET Session State Server (instead of InProc)?

Before I start using Session State server for the benefit of making session state more robust in may apps compared to InProc state, I'd like to find a list of Pros and Cons for evaluation. Update ...
5
votes
5answers
1k views

ASP.NET Session Mix-up using StateServer (SCARY!)

We store two objects in session. Somehow, one of the objects from another users got loaded into a different users session. The user should have had no access to this particular data, and as soon as ...
4
votes
2answers
669 views

Suddenly getting “Unable to make the session state request to the session state server”

The setup: 2 web servers and a seperate state server I have two production web servers in a load balanced configuration. The ASP.NET web app they host shares state (like a web farm) using this line ...
3
votes
1answer
246 views

ASP.NET Session State Performance Benchmarks

I have found a lot of great information comparing InProc, StateServer, and SQLServer for ASP.NET state management, but I can't seem find any performance benchmark comparisons. It is clear that InProc ...
2
votes
1answer
54 views

InvalidCastException from StateServer session

A site I've written is experiencing a strange issue whereby it suddenly doesn't recognize items stored in the session immediately after I've made any update to the code. I've searched Stackoverflow / ...
2
votes
2answers
196 views

Why am I losing sessions when running in StateServer mode?

I have checked the servers (Win Server 2003) application event logs for the following problem http://support.microsoft.com/kb/308097 which doesn't show up. It just appears that sessions drop randomly ...
2
votes
2answers
5k views

Unable to make the session state request to the session state server

Our site is currently having this problem. Basically it only happen when we click some particular links where it will pop-up a new window. This is the error message we receive : Unable to make the ...
2
votes
9answers
2k views

asp.net, stateserver, NLB, session lost

1st post on stackoverflow, hope to have great feedback :) I'm currently trying to load balance our web site. We have set up a 2 cluster NLB on windows server 2003 with IIS 6. While testing the ...
2
votes
3answers
1k views

Can you have more than one ASP.NET State Server Service in a cluster?

We have a 4 server cluster running ASP.NET web application using ASP.NET State Server Service for session. On one of the 4 servers ASP.NET State Server Service is running and other servers are ...
1
vote
3answers
77 views

Asp.Net how to transfer session state to a State Server

I need to transfer session state of an Asp.Net application to a state server. Does any one have any experience about how to do it? Thanks .
1
vote
1answer
103 views

StateServer context.Session[key] not available

I'm a newbie to the StateServer. In one of my website, session state mode is StateServer. I have a Imagehandler in one of my component and in that i try to retrive the Session using the key - as below ...
1
vote
4answers
1k views

Why can't I share Session state between 2 web apps with StateServer? What am I missing?

I'm having trouble getting 2 identical ASP.NET MVC applications to share the same Session using a Session StateServer. The reason I'm trying to do this is we will eventually be deploying this app ...
1
vote
2answers
2k views

How to maintain the same session id across multiple web applications in ASP.NET

I have two identical applications setup on IIS on different virtual directories (I have done some workaround to ensure that they both have the same application name). Is there a way to share session ...
1
vote
1answer
140 views

StateServer not allowing WCF returned type to be stored in session variable

I'm making a call to one of our internal WCF services from within a 1.1 web application and returning a type which I then store in session. The returned type contains data for the page and when the ...
1
vote
1answer
171 views

Any examples of implementing DotNetOpenId on ASP.NET State Server?

We have dotopenopenId implemented on our web farm which currently uses scaleout. We want to replace ScaleOut with ASP.NET State Server, but I'm wondering if there are any examples of the interfaces ...
1
vote
2answers
883 views

How to find the Number of Active Users when using a StateServer

How can you find out the number of active users when you're using a StateServer? Also is it possible to query the StateServer and retrieve the contents in the Session State? I know that this is ...
1
vote
2answers
464 views

Switching state server to another machine in cluster

We have a number of web-apps running on IIS 6 in a cluster of machines. One of those machines is also a state server for the cluster. We do not use sticky IP's. When we need to take down the state ...
0
votes
1answer
21 views

Can I store xmlDocument object in Session?How to do seralization?

I have one XML document which I want to store it inside session so on each post back I do not need to load it from its physical path again. We are using state server. When I tried to store it in ...
0
votes
1answer
38 views

.Net Shopping Cart Session accessible across different browsers by different users?

Using following method to create Shopping Cart Session http://net.tutsplus.com/tutorials/other/build-a-shopping-cart-in-aspnet/ Now running locally on my machine where sessionstate mode is inProc by ...
0
votes
1answer
48 views

Sharing session in two same web site hosted as different web application IIS7

i have a senerio in what i want to share session between two web site having same code. For example. Website ------- WebSite1 (bind to abc.test.com) ------- WebSite2 (bind to xyz.test.com) What ...
0
votes
0answers
86 views

Losing Session State using StateServer on IIS7 Windows Server 2008

I have done extensive googling on this issue, we have 4 servers, all using the same application path/pool name, with no underscores in the server name etc. We used InProc session state mode first but ...
0
votes
1answer
54 views

cannot use stateserver mode other than inproc

The most irritating problem i've come across. I have an asp.net mvc application with sessionstate mode to stateserver. On my local machine and my old server iis6 it worked but i recently changed to a ...
0
votes
1answer
140 views

Sharing ASP.NET SessionState between 2 apps with a StateServer shares the same SessionID but not key values, why?

I'm guetting out of ideas. I'm trying to use the same SessionState between two .Net 4 apps running under the same application pool and using mode="StateServer". I did a test on both app and I have a ...
0
votes
1answer
136 views

AppFabric velocity as a state server

Is anybody using Windows AppFabric Server for out of process state management? Any feedback, advice would be appreciated.
0
votes
0answers
156 views

Debugging issues with Asp.Net state service

Our server is using out of process state management using the state service. Occasionally the server starts choking (users see YSOD runtime errors) and the event log contains a series of these ...
0
votes
0answers
278 views

Should StateServer (aspnet_state.exe) release RAM when a session ends?

I am noticing that the StateServer service only grows in memory usage. When a user logs out the session is ended with: Session.Clear() Session.RemoveAll() Session.Abandon() I assumed that ...
0
votes
2answers
134 views

State server in webfarm scenario?

This is a fairly basic question about state server but assume there are 2 servers behind a load balancer. How do I configure the session state server? So, I have machine1 and machine2. I would assume ...
0
votes
1answer
86 views

Two versions of same asp.net app using same server as stateserver - bad?

We have 2 production web servers for our web app, load balanced to handle lots of traffic. We also have a similar setup for testing. Test pool: [TEST 1]---[TEST 2] Prod pool: [PROD ...
0
votes
3answers
278 views

Asynchronus File Upload with StateServer Mode

I want to implement Asynchronus File Upload. I've tried ajax:AsyncFileUpload control. It's working fine only with InProc Mode. But I'm using StateServer Mode. Any help from anybody? Thanks in ...
0
votes
3answers
493 views

StateServer to save session

We are going to update our asp.net application to save session in state server. Any attention required to avoid problems after the update? It is going to run in IIS 6 and IIS 7. Thanks, ...
0
votes
2answers
912 views

Session expires using state server on application pool refresh

I have a .NET 1.1 application hosted on two different servers, but on one of them whenever the application pool is recycled, all sessions are dropped. Both applications are using “StateServer” ...