1

I'm trying to get ARR running in a test environment. I have 3 servers and setup a web farm. From there I enabled load balancing on each node except the primary.

What it seems like its doing is the requests are getting handled by the primary server (even though it's not enabled for load balance). If I stop the site on the primary server, my requests no longer work. If I enable, then requests work again.

Is there another step that I'm missing to get this working?

Steve Sloka
  • 260
  • 2
  • 8
  • I may be closer on a path. My ARR server was also a node in my WebFarm. The bindings on a website take higher priority than the URLRewrite's, so my Site was answering before URL_Rewrite could pass to ARR. – Steve Sloka Mar 08 '12 at 22:05
  • My last comment was the problem. I had the website bindings accepting the request. URLRewrite needs to apply a rule to route to the WebFarm and it wasn't getting the chance. – Steve Sloka Mar 09 '12 at 15:11

1 Answers1

2

The bindings on a website take higher priority than the URLRewrite's, so my Site was answering before URL_Rewrite could pass to ARR

Steve Sloka
  • 260
  • 2
  • 8