Questions tagged [web-garden]

Web gardens is a feature of IIS 6.0 that allows an application pool to be supported by multiple worker processes.

Web gardens is a feature of IIS 6.0 that allows an application pool to be supported by multiple worker processes. The worker processes in a Web garden share the requests that arrive for that particular application pool. If a worker process fails, another worker process can continue to process requests.

Configuring Web Gardens with IIS 6.0

65 questions
1
vote
1 answer

ASP.NET Session Lost When Use Web Garden Settings

I have an ASP.NET MVC (.NETFramework 4.5) application, when I hosted (IIS-7.5), I set max Worker process to 5, And Set Session State to StateServer And Set a static machinekey, after all my session is null, Why? Is there any settings that I lost?…
Saeid Alizade
  • 853
  • 3
  • 9
  • 18
1
vote
1 answer

Execute async tasks in a web garden

I have this function that executes an async task run and return results public bool CheckNetworkDrive(string drive) { var task = new Task(() => { return CheckNetworkDriveMethod(drive); }); task.Start(); //make async call to…
1
vote
3 answers

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 logging on the button_click event that writes a…
meh
  • 155
  • 3
  • 7
1
vote
1 answer

Does an IIS web garden use threads or processes?

When you set an application pool's Maximum Worker Processes attribute in IIS are you actually setting the number of processes or the number of threads?
Nathan Noble
  • 806
  • 7
  • 14
0
votes
1 answer

to config web garden for testing purposes

I configured my web app to use Web Garden by settings the Maximum worker processes to 3. So now when I start my application, three worker processes are fired up in IIS 7, but all the requests just go to one worker processes. My question is there a…
daljit
  • 1,256
  • 1
  • 11
  • 30
0
votes
1 answer

Web Garden and Static Objects difficult to understand

I am in the process of investigating to convert our web application to the web farm. So I started with web garden, by converting the 'Maximum Worker Process = 3'. Following is the simplified version of my problem. Following is my Static Object…
daljit
  • 1,256
  • 1
  • 11
  • 30
0
votes
0 answers

IIs internal load balancer does not distribute requests evenly

We have windows server 2019. On IIS server, we have 10 workers. IIS internal load balancer does not distribute requests evenly It means that when IIS received 20 requests, It puts 10 requests on worker 1 and 10 requests on worker 2 and the other 8…
Mahsa ehsani
  • 117
  • 12
0
votes
0 answers

Static Class Not maintaining its state C#

My question here is why my feed_expiration_date datetime variable becomes null on each request only in server environment it works perfectly on local environment I have a web garden (8 process workers) on both local and server environment. actually…
Asad
  • 1
0
votes
0 answers

Caching Issue only in server enviornment

Hi I have implemented cache in my system through custom logic which checks for cache expiry and then make a decision that it needs to get the data from cache or from db or files. In local enviornment it is working fine but on server enviornment it…
0
votes
0 answers

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

I have an ASP.NET MVC application that is configured to run using Web Garden. Session state mode is set to StateServer in web.config using below:
Willy
  • 9,848
  • 22
  • 141
  • 284
0
votes
0 answers

ASP.NET MVC Signalr reconnect and negotiate throwing a System.OutOfMemoryException

I have an ASP.NET MVC application working on a Web Garden configuration. The application pool identity is set to a custom domain account (with local administator permissions). Application pool has 4 worker processes. Session state mode is set to…
Willy
  • 9,848
  • 22
  • 141
  • 284
0
votes
0 answers

IIS 8.5: A process serving application pool 'AppPool name' failed to respond to a ping

I am running an ASP.NET MVC application on IIS 8.5.9600.16384 under Windows Server 2012 R2 Standard. Sometimes I get below error in the event log that makes my application not responding for a while. Event ID 5010 - Source: WAS A process serving…
Willy
  • 9,848
  • 22
  • 141
  • 284
0
votes
0 answers

IIS 8.5: A process serving application pool '' suffered a fatal communication error with the Windows Process Activation Service

I am running an ASP.NET MVC application on IIS 8.5.9600.16384 under Windows Server 2012 R2 Standard. Sometimes I get below error in the event log that makes my application not responding for a while. Event ID 5011 - Source: WAS A process serving…
Willy
  • 9,848
  • 22
  • 141
  • 284
0
votes
2 answers

IIS: FailedRequestTracing module failed to write buffered events to log file for the request that matched failure definition

In my web Site I have enabled Failed Request Tracing log feature and configured it to store log files into the default folder %SystemDrive%\inetpub\logs\FailedReqLogFiles and I have set some failed request tracing rules. I have granted write…
Willy
  • 9,848
  • 22
  • 141
  • 284
0
votes
0 answers

Web Garden behaves differently depending on the user set on the application pool identity

I have configured my website in IIS (just an ASP.NET MVC application) to use Web Garden. I have noticed that If I set its application pool identity to a domain administrator account (not local administrator account) it is working correctly. However…
Willy
  • 9,848
  • 22
  • 141
  • 284