Questions tagged [session-state-server]

33 questions
9
votes
2 answers

ASP.NET Session State Server vs. InProc Session

What is the overhead performance penalty for running Session State Server instead of InProc? Is it significant? I understand that you can restart w3wp with the state server and retain all session state - is that the only advantage over InProc?
Alex
  • 75,813
  • 86
  • 255
  • 348
6
votes
1 answer

Install ASP.Net State Service (2.0 or later) without IIS?

For a server farm, I would like to install the ASP.Net State Service on a non-web server to share with all the web servers. Is it possible to install the ASP.Net State Service standalone without having IIS installed on its server? If so, how?
BrianCooksey
  • 1,543
  • 1
  • 12
  • 19
4
votes
1 answer

Session state server custom timeouts for users

I want to use a SessionStateServer Redis in Azure Cache. My problem is I want to set a custom timeouts for our users but it always takes the default value. How do I specify custom timeout values for our users ?
Rıfat Erdem Sahin
  • 1,738
  • 4
  • 29
  • 47
4
votes
3 answers

Asp .net session variables update by thread is not getting reflected in Session

In my page1.aspx i am generating a report from database by using thread. //on button click Hashtable ht = (Hashtable)Session["ReportParam"]; ReportThreadClass rth = new ReportThreadClass(ht); Thread thread = new System.Threading.ThreadStart(rth…
Pavan Tiwari
  • 3,077
  • 3
  • 31
  • 71
4
votes
1 answer

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 available outside of the Session without any…
Ivan
  • 43
  • 6
4
votes
2 answers

Session state lost in asp.net web farm

I've been busy with this for months now. I currently have 2 servers for 1 website. Using round robin dns I find that in the beginning everything works (checking the ip of the website it changed but I can go on with my session), but after a while I…
3
votes
2 answers

Unable to make the session state request to the session state server . error code=0x80072749

I am seeing an error on my production machine. The application is working fine for a while then suddenly it's not responding and I fix it by restarting IIS. StateServer is running fine in Services and the mode is automatic. The string below is what…
3
votes
0 answers

Configuring Remote Connections to Mono Asp-State Server

I am trying to migrate an Asp State Server from Windows to Linux Box, I have installed Mono and XSP after starting the asp-state4, while trying to connect to the Server it is showing the below mentioned message. Unable to make the session state…
3
votes
1 answer

Can AppFabricCacheSessionStoreProvider and StateServer co-exist within a same application?

There are some systems within a .NET project I'm working on which use StateServer. We're now using Appfabric cache for caching some stuff which we get from DB. Can these two co exist in the same config file? The session state part of my Config file…
krishwader
  • 11,341
  • 1
  • 34
  • 51
2
votes
3 answers

php session destroyed in android application

I am building a login application in android in which i am hitting a url(with username and password) upto that part it works fine but after that whenever I am hitting a url(once the user is authenticated) , it return nothing(i.e. a error message…
Dinesh Sharma
  • 11,533
  • 7
  • 42
  • 60
2
votes
0 answers

serialize all type of objects to store session in state server or sql server

I have a web application with ASP.NET web forms and I want to store session in state server or SQL server , in those cases my classes must be serialized, but I have some non-serializable fields or class (like IIdentity). what’s the best way to do…
Hadi
  • 443
  • 3
  • 15
2
votes
1 answer

ASP.NET MVC 3 - custom Profile and persisting in State Server

We have a custom profile class inheriting from ProfileBase. We'd like to pop this object into Session to remove the need to keep retrieving it per request. We're using ASP.NET State Server and we're hitting the following exception: Type…
Neil
  • 2,688
  • 1
  • 23
  • 32
2
votes
2 answers

State server in ubuntu

I deployed ASP.NET 4.0 website on ubuntu with apache2 and mono. I want to use session state server for that i have to run asp-state4 command in terminal so that state server will get started. When i run above command all is working fine but after…
Amogh
  • 4,453
  • 11
  • 45
  • 106
1
vote
1 answer

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 users are accessing the website. So we have planned…
Murtaza
  • 3,045
  • 2
  • 25
  • 39
1
vote
1 answer

WebLogic 9.2 Loadbalancing problem

I have a setup of 2 independent WebLogic 9.2.1 servers (they are Managed servers with their own Admin server). So no Clustering has been setup. They are configured with JDBC Session Persistence. Furthermore each of the WebLogic servers have their…
neko
  • 51
  • 5
1
2 3