Tagged Questions
The web-garden tag has no wiki summary.
5
votes
1answer
280 views
Use Web Garden to simulate Web Farm session issues?
I just stumbled across the concept of a "Web Garden" in an IIS App Pool. That is, when more than one process serves the same webpage. From what I understand, this means ASP.NET InProc sessions have ...
5
votes
2answers
1k views
IIS, multiple CPU cores, application pools and worker processes - best configuration for a single site?
We use Kentico CMS and I've exchanged emails with them about a web garden deployment.
We have a single site running on a server with 8 cpu cores. In line with Kentico's advice, we have not altered ...
4
votes
2answers
2k views
IIS Web Garden advantages / disadvantages
When do you need IIS Web Garden feature. What's pro's and con's?
3
votes
3answers
2k views
ASP.Net increase MaxProcesses (web garden) using state server and caching
I have an ASP.Net website on IIS7 and I am planing to increase the MaxProcesses to match the number of cores on the server (4 cores, 64bit Windows Server 2008).
From what I read, if I increase the ...
2
votes
1answer
202 views
2
votes
1answer
858 views
Singleton object in IIS Web Garden
I have a lot of Singleton implementation in asp.net application and want to move my application to IIS Web Garden environment for some performance reasons.
CMIIW, moving to IIS Web Garden with n ...
2
votes
2answers
541 views
DotNetOpenAuth RelayParty not working on load balanced cluster
We're trying to move an ASP.NET MVC application, which uses DotNetOpenAuth OpenID Version 3.4.1, from a single server web garden to a physical server cluster held behind a hardware load balancer.
Our ...
1
vote
1answer
92 views
IIS Web gardens and performance
Is there any performance benefit in configuring web gardens in IIS?
Anyone have any real life examples?
1
vote
1answer
201 views
500.19 Error In Web Garden Mode Only
My ASP.NET web app runs fine under IIS 7.5. But I want to make sure it's ready to run in a web farm. So I enabled web garden on my dev machine. (Set Maximum Worker Processes=2 in the app pool.)
...
1
vote
2answers
269 views
What is Web Farm and Web garden in asp.net?
Could any one explain me the difference between the Web Farm and Web Garden with some real time scenario?
1
vote
1answer
236 views
Can we use Web Farm and Web Garden together?
Web farm is used for multiple request and multiple user using switching among them.
Web Garden creates worker processes for every processor individually for one user.
Is it possible to use worker ...
1
vote
3answers
445 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 ...
1
vote
2answers
950 views
Is IIS Web-Garden Forced Process Initialization possible?
We have an ASP.Net Web Application that is running in an IIS Web-Garden--which is configured to allocate up to four processes. In our Web Application the first user that hits the site causes the ...
1
vote
2answers
2k views
IIS6 Available Memory for 32-Bit Application with Web Garden on x64 OS (32Gb Ram)
We have IIS6 running on a 64-bit Windows 2003 server with 32Gb physical RAM.
Due to some older 32-bit dependencies within our .NET 3.5 ASP.NET application, we are currently forced to run our IIS ...
0
votes
0answers
45 views
Hosting WCF in WAS(Web Garden) -> control WorkerProcess lifetime
I'm trying to host my WCF service in WAS but have been struggling for a few hours already to accomplish the following scenario:
There is a single client and many WCF 'servers'. Based on the address ...
0
votes
0answers
14 views
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 ...
0
votes
1answer
40 views
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 ...
0
votes
1answer
223 views
Refreshing static instances across multiple worker process
We recently experimented with running IIS (7.5) in web garden mode (i.e. 2 (or more) worker processes.
We use out of process state (state server) and are looking at App Fabric for out of process ...
0
votes
1answer
912 views
IIS and web garden configuration
Are there significant performance advantages to allowing IIS to spawn multiple worker processes per application pool (web-garden configuration). What perfmon counters would indicate that this might be ...
0
votes
1answer
150 views
When to create a web garden
I have an application that is currently running on IIS 6.0 with one worker process (the default). I am trying to determine if creating a web garden will improve performance. I have read a bunch of ...
0
votes
1answer
35 views
What should I consider when deploying a new web farm?
My web app has been chugging along just great in Production for years with one App server and one Web server. Now we're moving to a multi-server environment with 2 App and 3 Web servers. I have enough ...
0
votes
2answers
307 views
Creating a chart with tool tips in a Web Garden
I need to show a Line Chart on an ASP.NET page where each data point has a tooltip that shows its exact X and Y values. A chart for a particular dataset will probably only ever be requested once, so ...