using NLB

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have conifgured network load balancing basically with two hosts and hosted a simple web application on them. The load balancing is working fine (distributing requests to the hosts) . But, I have a problem which I have described as follows

Let us assume there are two servers A and
I have a simple ASP.NET application which takes two inputs. I have two buttons, Next and Save. When I click on Next button, I add the values to the Viewstate and when I click on Save, the values are saved to the database

1) Accessing server A, specify inputs, click Next button
2) specify inputs, remove network cable from node
3) Click Next,

Now, what is observed is that it takes some time and the request is forwarded to Server B. But, whatever data is posted is not available and it treats as a new request. Is there any possible way to overcome this

Thanks in advance

Regards
Ramesh
 
NLB does not handle content replication between servers. See 232190
Description of Network Load Balancing Features
http://support.microsoft.com/?id=232190

"Functionality That Is Not Included with NLB
-------------------------------------------

- Replicate data among servers. However, you can accomplish this by
using Microsoft Content Replication System (CRS) or a third-party
program."

--

Thanks,
Marc Reynolds
Microsoft Technical Support

This posting is provided "AS IS" with no warranties, and confers no rights.


Ramesh said:
I have conifgured network load balancing basically with two hosts and
hosted a simple web application on them. The load balancing is working fine
(distributing requests to the hosts) . But, I have a problem which I have
described as follows.
Let us assume there are two servers A and B
I have a simple ASP.NET application which takes two inputs. I have two
buttons, Next and Save. When I click on Next button, I add the values to the
Viewstate and when I click on Save, the values are saved to the database.
1) Accessing server A, specify inputs, click Next button.
2) specify inputs, remove network cable from node A
3) Click Next,

Now, what is observed is that it takes some time and the request is
forwarded to Server B. But, whatever data is posted is not available and it
treats as a new request. Is there any possible way to overcome this?
 
Back
Top