Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / desktop / ATL

A Simple Windows HTTP Wrapper Using C++

4.26/5 (17 votes)
31 Jul 2008LGPL32 min read 1   9.2K  
Gets the content of a web page into a project without the WinHttp APIs mixed in my source code using a WinHttp wrapper.

Introduction

Recently I needed to get the content of a web page into a project and I didn't want to have WinHttp APIs mixed in my source code so I created a simple WinHttp wrapper named WinHttpClient.

WinHttpClient takes a URL as a parameter, sends the HTTP request and gets the response. The method that sends the HTTP request is a synchronous method so it should NOT be called in the UI thread. WinHttpClient is thread safe which means it can be used in many threads at one time.

Using the Code

Using WinHttpClient is pretty simple. The class diagram is as follows.

For example, the code snap to get the content of http://www.codeproject.com/ is as follows.

C++
WinHttpClient client(L"http://www.codeproject.com/");
client.SendHttpRequest();
wstring httpResponseHeader = client.GetHttpResponseHeader();
wstring httpResponse = client.GetHttpResponse();

Additional

There are several things that may interest you.

  1. The method SendHttpRequest is a synchronous method and it will retry several times until it succeeds which causes this method to take a long time to finish. So do not use this in a UI thread. It is recommended to create some worker threads and use WinHttpClient in them since WinHttpClient is a thread safe class.
  2. You can parse and enumerate the URLs in the string returned by the method GetHttpResponse and get the contents of the them and do it over and over again. Then you will get the contents of a whole website.
  3. URLs with default index pages can be handled well. Fox example:
    • http://www.codeproject.com/
    • http://www.codeproject.com/Zones/IBM/
    • http://www.codeproject.com/info/submit.aspx
  4. I don’t really know how the HTTP verb affects the result. So a user can select use the GET or POST verb to send the HTTP request through the parameter of SendHttpRequest. The default verb is GET.

Points of Interest

When using MultiByteToWideChar to convert to the wide characters, deleting the buffer I created to hold the output wide leads to a crash if I set the last character to 0. It is strange and I didn't figure it out.

Finally

This is my first time writing a technical article. I hope I explained everything clearly.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)