I have a WinHttp.WinHttp Request.5.1 object that works perfectly when GETing .htm pages, but times out when trying to GET .asp pages.
I have tried using setCredentials:
This also fails. The system is WinXP with IIS 5.
I can run the same code on a Win 2003 server running IIS 6 and it works. Is there a setting I have forgotton on my system that will let this work?
I have tried using setCredentials:
Code:
Set Http = CreateObject("WinHttp.WinHttpRequest.5.1") Http.Open "GET", "http://<path>/filename.asp", False Http.setCredentials "<domain>\Administrator", "<password>",0 Http.Send
I can run the same code on a Win 2003 server running IIS 6 and it works. Is there a setting I have forgotton on my system that will let this work?
Comment