We are trying to setup a reverse proxy mechanism using ARR (Application Request Routing) and URL Rewrite. The rewriting is working fine when we use GET Method request but when we send Post for method with this content type (x-form-urlencoded) request, ARR does not return any response. How can I solve this problem?
<rewrite>
<rules>
<rule name="InboundGeneral" enabled="true" stopProcessing="true">
<match url="^(.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Rewrite" url="http://localhost:29341/{R:1}" logRewrittenUrl="true" />
</rule>
</rules>
</rewrite>