Click here to Skip to main content
15,889,909 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I have implemented ARR reverse routing in IIS 8.5
XML
<rewrite>
      <rules>
        <rule name="Reverse Proxy to test" stopProcessing="true">
          <match url="^test(.*)" />
          <action type="Rewrite" url="http://10.210.19.103:80/{R:1}" />
        </rule>

      </rules>
    </rewrite>


This is the code in my webconfig
in my local machine IIS i.e, IP 10.210.19.103:80 an Application is installed which requires windows authentication.
but when i try to open that from my server using ARR it tried to load at first then gives 404 error
but at the same time i tried to add a html in my local IIS and access from server using ARR , it worked fine.

i am not sure why its not working for page which require windows authentication
please help.
Posted
Updated 9-Aug-15 20:37pm
v2
Comments
SundararamanS 12-Aug-15 23:39pm    
Did you try accessing the app directly from your browser and does it work fine as intended ?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900