StateServer is a session-state mode in ASP.NET, which indicates to store session state in a separate process called the ASP.NET state service. This ensures that session state is preserved if the Web application is restarted and also makes session state available to multiple Web servers in a Web ...
0
votes
0answers
42 views
HTTP 500 Unable to make the session state request to the session state server
I have read all the majority of the links on stackoverflow and via google and duckduckgo searches. (Well over 50+ pages on the web) None of the solutions that I have read have had an affect on the ...
0
votes
2answers
126 views
Using Stateserver Session in ASP.NET web farm
I have created an online shopping website which will be deployed on a web farm. As a result of this, I've decided to use the Stateserver Session Management provided by ASP.NET. Now, I have a login ...
3
votes
1answer
124 views
Session mode “ServerState” doesn't handle Session in a Thread properly
I have implemented some work which adds values to the Session state inside a Thread. I would like these values to be available outside the Thread (obviously).
The information added to the Session is ...
0
votes
1answer
158 views
MVC PRG pattern conflict with SessionState
I've an MVC3 web app. In that I've been using the PRG (Post-Redirect-Get) pattern. That is during postback if any model validation fails I persist the ViewData in TempData and then redirect to the ...
0
votes
0answers
21 views
“unexpected backing store mode in object metadata” exception using scaleout state server
I'm using scaleout state server as a distributed cache for several windows services on several machines and I'm doing so in the same manner for quite some time now with no problems.
on my last ...
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 ...
0
votes
1answer
692 views
Session Expired after closing browser when using State Server
i have a very simple question
I m using State Server for storing Session in my application. The problem is that, when i hit my site and login in my site and after i login if i close my browser and ...
0
votes
1answer
577 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 ...
2
votes
1answer
253 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 / ...
0
votes
1answer
434 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 ...
1
vote
1answer
234 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 ...
1
vote
2answers
492 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 .
0
votes
1answer
204 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 ...
6
votes
5answers
3k 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 ...
0
votes
2answers
993 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 ...
5
votes
1answer
936 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 ...
0
votes
1answer
271 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.
1
vote
1answer
204 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
...
4
votes
3answers
4k 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 ...
0
votes
0answers
475 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 ...
2
votes
4answers
4k 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 ...
2
votes
2answers
5k 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 ...
0
votes
2answers
222 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 ...
1
vote
1answer
185 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 ...
7
votes
4answers
3k 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 my apps compared to InProc state, I'd like to find a list of Pros and Cons for evaluation.
Update 1: ...
2
votes
2answers
368 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 ...
0
votes
1answer
133 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 ...
1
vote
1answer
228 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 ...
0
votes
3answers
432 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 ...
8
votes
5answers
3k views
ASP.NET Session Mix-up using StateServer (SCARY!)
We store two objects in session. Somehow, one of the objects from another user got loaded into a different user's session. The user should have had no access to this particular data, and as soon as ...
14
votes
4answers
13k 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 ...
13
votes
4answers
15k 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 ...
0
votes
3answers
676 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
1k 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” ...
2
votes
9answers
3k 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
2answers
1k 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 ...
3
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
2answers
573 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 ...

