The problem that I have is the the URL Rewrite module refuses to do a Reverse Proxy if any condititions are set. If left with only "wildcard" then Reverse Proxy works (not realy a solution).
The URL Rewite has been updated to version 1.1 to know avail.
Here is the specific rewrite rule to convert http://www.testportal.test.com:8030 to http://newportal.test.com:8030 (only active rule).
<rule name="TestRule" patternSyntax="Wildcard" stopProcessing="true">
<match url="*" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTP_HOST}" pattern="testportal.test.com" />
<add input="{SERVER_PORT}" pattern="8030" />
</conditions>
<action type="Rewrite" url="http://newportal.test.com:8030" appendQueryString="true" />
</rule>
I will appreciate if someone could please shine some light on this issue (and please do not say "use ISA")