Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Clustered web farm

    Hi,
    Is it possible to redirect user to same webserver in
    clustered web farm until his session ends?

    sudha Guest

  2. Similar Questions and Discussions

    1. Web Farm and <machineKey>
      I have a Web Farm and I understand that in order to keep ViewState safe I want to modify the <machineKey>. 1) The documentation indicates that...
    2. Web Farm
      Scenario is load balancer and two machines(1&2) in production. Out of state session server on another machine (Session). Works perfectly. ...
    3. redirect user to same server in clustered web farm
      Hi, Is it possible to redirect user to same webserver until his session ends? Thanks in advance
    4. direct the user to same server in clustered web farm
      How can I direct user to same server until his session ends in the clustered web farm? Thanks in advance
    5. creating a temporary file in clustered web farm
      Does creating a temporary xml file from dataset on the server on a per-user basis and read from it will create any problem in clustered web farm? ...
  3. #2

    Default Re: Clustered web farm

    Hi

    Do you have control over loadbalancer?
    Change it so that only first time requests get assigned to a machine and
    stay on it.

    --
    Best Regards
    Vidar Petursson
    ==============================
    Microsoft Internet Client & Controls MVP
    ==============================
    "sudha" <sudha_s@mailcity.com> wrote in message
    news:015001c34636$4f7323b0$a301280a@phx.gbl...
    > Hi,
    > Is it possible to redirect user to same webserver in
    > clustered web farm until his session ends?
    >

    Vidar Petursson Guest

  4. #3

    Default Re: Clustered web farm

    Sudha

    You may wish to allow the load balancing device to do it's job for you. If
    you can afford to dedicate a .Net server to manage your sessions for you,
    then it won't matter what server your user comes back to. In ASP, use a SQL
    server to hold session information. In .Net, look into the <sessionState />
    entry in your application's web.config file and point all of your web farm
    machines to point to that machine.

    There's a bunch of on line help that will provide further information.

    Hope this helps, Terry

    "sudha" <sudha_s@mailcity.com> wrote in message
    news:015001c34636$4f7323b0$a301280a@phx.gbl...
    > Hi,
    > Is it possible to redirect user to same webserver in
    > clustered web farm until his session ends?
    >

    Terry K. Lindquist Guest

  5. #4

    Default Re: Clustered web farm

    If you are using Microsoft AppCenter, you could set the client affinity to
    ensure that all requests from a client are being directed to the same
    server.

    [url]http://www.microsoft.com/technet/treeview/default.asp?url=/technet/itsolutio[/url]
    ns/ecommerce/deploy/rollout/duwwsr.asp


    "sudha" <sudha_s@mailcity.com> wrote in message
    news:015001c34636$4f7323b0$a301280a@phx.gbl...
    > Hi,
    > Is it possible to redirect user to same webserver in
    > clustered web farm until his session ends?
    >

    netboy Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139