-
Posted to
IIS 7.0 - Application Request Routing (ARR)
by
PascalN
on
05-19-2009, 12:11 PM
You can do this by doing the same as what's above but you wont need any conditions. Instead you should use the pattern in the Match URL section of your rule
RequestedURL: Matches the pattern
Using: Wildcard
Pattern: http://www.iisserver.mycompany.com/internal1/*
In the Action section you should have something like this
Action Type: ...
-
Posted to
IIS 7.0 - Application Request Routing (ARR)
by
PascalN
on
05-16-2009, 12:24 AM
Hello,
Yes you can do that with ARR
In IIS manager click on your server node (not a web site) in the left tree and from there open "Application Request Routing"
On that page check the "Enable proxy" check box at the top. Still on that page, in the "Proxy Type" section at the bottom make sure ...
-
Posted to
IIS 7.0 - Application Request Routing (ARR)
by
PascalN
on
04-03-2009, 2:21 PM
That is perfect!
Thank you
-
Posted to
IIS 7.0 - Application Request Routing (ARR)
by
PascalN
on
04-03-2009, 11:20 AM
Hello,
based on your comment I was able to get to that information using MWA on IronPython and PS. Here is how I did it for PS.
# First add a reference to the MWA dll
PS> [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.Web.Administration")
#Get the manager and config object
PS> $mgr = new-object ...
-
Posted to
IIS 7.0 - Application Request Routing (ARR)
by
PascalN
on
04-02-2009, 5:44 PM
Hello,
I would like to know it there is a way to get access to the data displayed in the Monitoring and Management page of a server farm. Specifically I'd like to get access to the Availability and Health Status columns. On the documentation site there are some examples to setup the config but nothing to display that data. ...