The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
622 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
134 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
0answers
44 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 ...
1
vote
0answers
374 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 ...
0
votes
0answers
34 views

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 ...