my ASP.NET web application uses windows authentication on our intranet. I want it to be able to make a server-side http request to another server on the same domain that als
There are several steps to configuring Kerberos/Delegation with Windows.
First, you need to configure ASP.NET to use delegation. I assume you have this configured in your web.config.
Then you need to configure the ASP.NET Service Account for delegation. Sometimes you have to create an SPN.
Then enable delegation for the IIS server AND the account in Active Directory.
Step by step instructions are provided here: http://msdn.microsoft.com/en-us/library/ms998355.aspx Follow Steps 1-3.
http://blogs.technet.com/b/taraj/archive/2009/01/29/checklist-for-double-hop-issues-iis-and-sql-server.aspx
http://www.phishthis.com/2009/10/24/how-to-configure-ad-sql-and-iis-for-two-hop-kerberos-authentication-2/
IIS to SQL Server kerberos auth issues