The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
93 views
+50

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 ...
3
votes
1answer
46 views

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 ...
3
votes
1answer
146 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 ...
6
votes
2answers
7k views

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 ...
0
votes
2answers
654 views

Why is my SessionIDManager child class not being asked to CreateSessionID?

I have implemented a web app using session state management as per the instructions found on: ...
1
vote
0answers
50 views

Asp.Net State Server Service should RUN in all production web servers?

Asp.Net 2.0 Session State Mode = State Server and poiniting to the 1st server only in all webservers web.config My Doubt We have 6 production servers for our project. Do I need to make sure the ...
3
votes
2answers
489 views

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 ...
0
votes
1answer
175 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 ...
1
vote
1answer
184 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
160 views

ASp.net State server dealing with IRequiresSessionState vs IReadOnlySessionState?

MY friend asked here a question And the one who answered him - wrote something interesting ! ( without any proof , source). It makes a bigger difference when you're using out-of-process session ...
0
votes
1answer
69 views

Determining which control is getting serialized

Similar to This Question, I have an application that relies heavily on in-process session. I'm now trying to move the session store to a local State Server. I'm getting the error: Type ...
0
votes
1answer
314 views

ASP.NET MVC 2.0 Session State Connection Error Handling

I have a MVC 2.0 site that uses SQL Server as it's session state manager. I am trying to account for a network error in which my site loses connectivity to the SQL server itself. For very basic ...
1
vote
1answer
641 views

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. ...
0
votes
1answer
2k views

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

Unable to use session state server because this version of ASP.NET requires session state server version 2.0 or above

I am migrating 2 .NET web sites from one Windows 2003 (IIS6) server to another. One of the sites is .NET 2.0 and the other is .NET 3.5. I am using the StateServer mode of ASP.NET session state with ...
1
vote
0answers
378 views

Error when configuring session state server

We have 4 machines behind a firewall and hardware load balancer. We are trying to setup session state server. When we do, we get the following error: Message: System.Net.Sockets.SocketException ...
2
votes
1answer
2k views

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 ...
0
votes
1answer
138 views

Articles on the inner workings of Session State Management (ASP.NET)

I’m currently doing some work involving optimization of session-related code. The code I work on uses a state server approach in a web farm environment. I want to deeply understand what happens ...
1
vote
3answers
549 views

Asp.net 2.0 Button click method works inconsistently in a web garden

We have a asp.net 2.0 web application that is running on IIS7. It is using web gardens and asp.net state server. On the page, there are many user controls. On one of the user controls, we have added ...