Reputation: 494
I've recently changed from Winsock to WinHTTPRequest however when this line runs:
Set WinHttpReq = New WinHttpRequest
I receieve an Automation Error :2147024769.
This code works fine on windows7/Windows server 2008, however is failing in Windows 2003.
Is this a problem with the winhttp.dll not being found on Windows server 2003?
Upvotes: 0
Views: 915
Reputation: 13267
See Using WinHTTP as a Side-by-side Assembly if you need to use WinHttp 5.1 on Win2003 Server SP1 or later. A sample manifest can be found there but to make use of the information you'll need an understanding of manifest use in VB6 applications.
Upvotes: 1