Hi
I have a url rewrite to fetch contents from other site. Configuration is as bellow.
However this is working perfectly when i put application in classic mode. It is not executing in Integrated mode.
<rewrite>
<rules>
<rule name="Route the requests to NewsRoom" patternSyntax="ECMAScript" stopProcessing="false">
<match url="stories(.)*" negate="false" />
<conditions>
</conditions>
<action type="Rewrite" url="http://xxxxxx.com/{R:0}" />
<serverVariables>
<set name="HTTP_ACCEPT_ENCODING" value="" />
</serverVariables>
</rule>
</rules>
</rewrite>