Categorized | ASP.NET FAQ

WebGardening and Webforming

Web Gardening Image

WebGardening

Usually all the application developed by a company will be assigned to a single worker process in the IIS.This is not called as the WebGardening.Second example is not in the WebGarden environment.

But IIS adminsitrator having a chance of assigning all the availble application to more than one worker process. This is called the WebGardening.First Figure shows you WebGarden environment.

EasyFreeAds Blog News Facebook Twitter Myspace Friendfeed Technorati del.icio.us Digg Google Yahoo Buzz StumbleUpon

9 Responses to “WebGardening and Webforming”

  1. Barath says:

    Excellent explanation. Now this is pretty clear. By the way who is the author for this.

  2. Ganesh says:

    Not clear explanation. Be brief

  3. We are sorry. This article needs to be updated yet. This is the partial article only.
    You can see the complete article by monday.
    Regards
    Team Palle Technologies

  4. Arvind Hindyar says:

    Hello Sir,
    Please help me in implementing two interfaces having same methods.

    interface IDemo
    {
    void Show();
    }

    interface IDemo1
    {
    void Show();
    }

    class Interclash : IDemo, IDemo1
    {
    //Method definitions
    }

  5. Public InterFace I1 { void m1(); }
    Public InterFace I2 { void m1(); }
    Public Class Test: I1,I2
    {
    public void I1.m1() { //give implementation }
    public void I2.m1() { //give implementation }
    }

  6. Arvind Hindyar says:

    Yes I tried that by creating object
    {
    Test Itest=new Test();
    Itest.I1.m1();
    }
    I’m getting the following error-

    Error 1 ‘Test’ does not contain a definition for ‘I1′ and no extension method ‘I1′ accepting a first argument of type ‘Test’ could be found (are you missing a using directive or an assembly reference?)

  7. Krushnendu says:

    sir,
    How to get city name from selected State in javascript ?

  8. Swathi Malkar says:

    Web Farms:
    when a single web site is hosting on multiple web server, to distributed the load balancer among them is called “Web Farm”.

    Web Garden:
    When a single Application pool contain multiple Worker process is called “web garden”.
    * Application pool is the container of worker process.
    * Worker Process runs the ASP.Net application in IIS.

Trackbacks/Pingbacks


Leave a Reply