I have an ASP.NET intranet application configured to run in Windows Integrated Authentication mode. It worked fine until recently, when the need arose.
What is needed for an intranet to be checked for availability by using the availability check, which is a Windows service. What checker does goes to the ASP.NET page and checks the response object. Since the Windows service does not work with the domain user account, it receives
The remote server returned an error: (401) Unauthorized.
I am considering adding a new asp.net page for verification, and I want to tell the system not to authenticate it. But I believe that authentication takes place before the application even gets the opportunity to view the page, that error 401 is returned before the application code "sees" the page.
What are my options for this?
Thank!
John
source
share