Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the recommended way to get winhttp.h?

Our application uses libcurl for HTTP, and we want to get access to Internet Explorer's proxy settings. An earlier Stack Overflow question recommends that we use WinHttpGetIEProxyConfigForCurrentUser and WinHttpGetProxyForUrl.

Unfortunately, the winhttp.h header does not appear to be included with our copies either Visual C++ 2005 or Visual Studio 2008. Apparently, it's possible to download an updated Platform SDK and install it in Visual C++ 2005, but it's a pretty painful process, and it doesn't necessarily work with newer versions of Visual Studio.

Is there a good, well-supported way to access the WinHTTP 5.1 APIs from C++? Or should we avoid using these APIs?

like image 215
emk Avatar asked Apr 15 '09 14:04

emk


2 Answers

The best, well-supported way to access the WinHTTP 5.1 APIs from C++ is via the Windows SDK (new name for the Platform SDK) and using those APIs you mentioned.

The article you linked to suggests that installing the SDK is difficult - the good news is its an old article from 2006 and things are much easier these days. Just do the following:

  1. Download the latest SDK ISO image from here - don't worry about it being called the "SDK for Windows Server 2008", it's also for Server 2003, XP and Vista.
  2. Burn to DVD
  3. Run the setup.exe on the DVD, select full installation and let it run for 1/2 hour or so.
  4. After installation, goto Start -> Programs -> Microsoft Windows SDK -> Visual Studio Registration -> Integrate Windows SDK with Visual Studio 2005

You may even be prompted to run the integration tool during installation - it's been a while since I installed it so I can't recall exactly.

The Visual C++ compiler will then be able to find winhttp.h and winhttp.lib in the appropriate folders.

Update As usual things are never as simple as they should be. EMK has pointed out that the Windows SDK Configuration Tool doesn't work properly with Visual Studio 2008 (any version) and crashes after installing Visual Studio 2008 SP1. Details and workarounds are reported here and here.

like image 153
snowcrash09 Avatar answered Sep 21 '22 01:09

snowcrash09


In case anyone comes across this post and is curious about the minimal components that can be installed to get winhttp, installing Microsoft Windows Core SDK > Build Environment > Build Environment (x86 32-bit) worked for me.

like image 31
Susam Pal Avatar answered Sep 20 '22 01:09

Susam Pal