Click here to Skip to main content
15,878,748 members
Articles / Desktop Programming / ATL

A Fully Featured Windows HTTP Wrapper in C++

Rate me:
Please Sign up or sign in to vote.
4.92/5 (102 votes)
22 Sep 2010CPOL3 min read 448.9K   22.5K   312   166
A fully featured and easy-to-use Windows HTTP wrapper in C++

Introduction

This is a fully featured Windows HTTP Wrapper in C++. It is a wrapper in the C++ class. It is fully featured and easy to use. You only need to include one single header file to use the wrapper.

Background

Several months ago, I posted my first article A Simple Windows HTTP Wrapper Using C++ on CodeProject. I continued to update it in the last several months and finally got the fully featured Windows HTTP Wrapper based on WinHTTP APIs in C++.

Features

  • Cookies supported
  • Proxy supported
  • GET, POST methods supported
  • Request headers customization supported
  • Disable automatic redirection supported
  • HTTPS supported
  • Receive progress supported
  • Some other features

Using the Code

The class diagram is as follows:

class.JPG

You can understand most of the functions from their names. Please refer to the examples section for some typical examples.

Examples

Simple Get Request

Get request is the most common request. Browsing a web page causes one or several Get requests.

C++
// Set URL.
WinHttpClient client(L"http://www.codeproject.com/");
 
// Send HTTP request, a GET request by default.
client.SendHttpRequest();
 
// The response header.
wstring httpResponseHeader = client.GetResponseHeader();
 
// The response content.
wstring httpResponseContent = client.GetResponseContent();

Simple Post Request

Post request usually occurs while logging in or posting a thread.

C++
WinHttpClient client(L"http://www.codeproject.com/");
 
// Set post data.
string data = "title=A_NEW_THREAD&content=This_is_a_new_thread.";
client.SetAdditionalDataToSend((BYTE *)data.c_str(), data.size());
 
// Set request headers.
wchar_t szSize[50] = L"";
swprintf_s(szSize, L"%d", data.size());
wstring headers = L"Content-Length: ";
headers += szSize;
headers += L"\r\nContent-Type: application/x-www-form-urlencoded\r\n";
client.SetAdditionalRequestHeaders(headers);
 
// Send HTTP post request.
client.SendHttpRequest(L"POST");
 
wstring httpResponseHeader = client.GetResponseHeader();
wstring httpResponseContent = client.GetResponseContent();

Getting Request's Progress

You can specify a callback function to get the request's progress.

C++
// Progress - finished percentage.
bool ProgressProc(double progress)
{
    wprintf(L"Current progress: %-.1f%%\r\n", progress);
    return true;
}
 
void ProgressTest(void)
{
    // Set URL and call back function.
    WinHttpClient client(L"http://www.codeproject.com/", ProgressProc);
    client.SendHttpRequest();
    wstring httpResponseHeader = client.GetResponseHeader();
    wstring httpResponseContent = client.GetResponseContent();
}

Specifying the User Agent

User agent is a string used by the clients to identify themselves to the web server so that the server can tell which client software you use, Internet Explorer 8, Chrome or FireFox. You can specify the user agent to pretend to be Internet Explorer 8 to fool the web server because sometimes the server only supports Internet Explorer 8.

C++
WinHttpClient client(L"http://www.codeproject.com/");
 
// Set the user agent to the same as Internet Explorer 8.
client.SetUserAgent(L"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1;...)");
 
client.SendHttpRequest();
wstring httpResponseHeader = client.GetResponseHeader();
wstring httpResponseContent = client.GetResponseContent();

Specifying the Proxy

Sometimes, we have to connect to the web through proxies. WinHttpClient connects to the web server directly and then uses the Internet Explorer setting to connect if it fails by default. You can also specify the proxy by calling function SetProxy.

C++
WinHttpClient client(L"http://www.codeproject.com/");
 
// Set the proxy to 192.168.0.1 with port 8080.
client.SetProxy(L"192.168.0.1:8080");
 
client.SendHttpRequest();
wstring httpResponseHeader = client.GetResponseHeader();
wstring httpResponseContent = client.GetResponseContent();

Handling Cookies

A cookie (also tracking cookie, browser cookie, and HTTP cookie) is a small piece of text stored on a user's computer by a web browser. A cookie consists of one or more name-value pairs containing bits of information.

The cookie is sent as an HTTP header by a web server to a web browser and then sent back unchanged by the browser each time it accesses that server. A cookie can be used for authentication, session tracking (state maintenance), storing site preferences, shopping cart contents, the identifier for a server-based session, or anything else that can be accomplished through storing textual data (http://en.wikipedia.org/wiki/HTTP_cookie).

You can specify cookies to send by calling SetAdditionalRequestCookies and get the response cookies by calling GetResponseCookies.

C++
WinHttpClient client(L"http://www.codeproject.com/");
 
// Set the cookies to send.
client.SetAdditionalRequestCookies(L"username=jack");
 
client.SendHttpRequest();
 
// Get the response cookies.
wstring httpResponseCookies = client.GetResponseCookies();
 
wstring httpResponseHeader = client.GetResponseHeader();
wstring httpResponseContent = client.GetResponseContent();

HTTPS

C++
WinHttpClient client(L"https://www.google.com/");

// Accept any certificate while performing HTTPS request.
client.RequireValidSslCertificates(false);

client.SendHttpRequest();
wstring httpResponseHeader = client.GetResponseHeader();
wstring httpResponseContent = client.GetResponseContent();

Multiple Requests

C++
WinHttpClient client(L"http://www.google.com/");
 
client.SendHttpRequest();
wstring httpResponseHeader = client.GetResponseHeader();
wstring httpResponseContent = client.GetResponseContent();

// Update the URL.
client.UpdateUrl(L"http://www.microsoft.com/");
client.SendHttpRequest();
httpResponseHeader = client.GetResponseHeader();
httpResponseContent = client.GetResponseContent();

A Complete Example

Codeproject.com needs logging in to download the files. This example logs in, gets the cookies, requests the source code (win_HTTP_wrapper/WinHttpClient_Src.zip) of my first CodeProject article, A Simple Windows HTTP Wrapper Using C++, and then saves the file to hard disk. This example includes cookies handling, post requests, request headers customization, etc.

C++
// 1. Get the initial cookie.
WinHttpClient getClient
	(L"http://www.codeproject.com/script/Membership/LogOn.aspx");
getClient.SetAdditionalRequestHeaders
	(L"Accept: image/gif, image/jpeg, image/pjpeg, image/pjpeg, ...");
if (!getClient.SendHttpRequest())
{
    return;
}
 
// 2. Post data to get the authentication cookie.
WinHttpClient postClient
	(L"http://www.codeproject.com/script/Membership/LogOn.aspx?rp=
	%2fscript%2fMembership%2fLogOn.aspx");
 
// Post data.
wstring username = L"YourCodeProjectUsername";
wstring password = L"YourPassword";
postClient.SetAdditionalRequestCookies(getClient.GetResponseCookies());
string data = "FormName=MenuBarForm&Email=";
data += (char *)_bstr_t(username.c_str());
data += "&Password=";
data += (char *)_bstr_t(password.c_str());
data += "&RememberMeCheck=1";
postClient.SetAdditionalDataToSend((BYTE *)data.c_str(), data.size());
 
// Post headers.
wstring headers = L"...Content-Length: %d\r\nProxy-Connection: 
		Keep-Alive\r\nPragma: no-cache\r\n";
wchar_t szHeaders[MAX_PATH * 10] = L"";
swprintf_s(szHeaders, MAX_PATH * 10, headers.c_str(), data.size());
postClient.SetAdditionalRequestHeaders(szHeaders);
if (!postClient.SendHttpRequest(L"POST", true))
{
    return;
}
 
// 3. Finally get the zip file.    
WinHttpClient downloadClient(L"win_HTTP_wrapper/WinHttpClient_Src.zip");
downloadClient.SetUserAgent(L"Mozilla/4.0 
		(compatible; MSIE 8.0; Windows NT 5.1; ...)");
 
// Sending this cookie makes the server believe you have already logged in.
downloadClient.SetAdditionalRequestCookies(postClient.GetResponseCookies());
if (!downloadClient.SendHttpRequest())
{
    return;
}
downloadClient.SaveResponseToFile(L"C:\\WinHttpClient_Src.zip");

Points of Interest

  • Sometimes, it is a good idea to get a piece of new code working first and improve it later.
  • Reading the Hypertext Transfer Protocol (RFC 2616) will help a lot.
  • Use HTTP monitoring tools to help the development, such as HTTPAnalyzer or HTTPWatch.
  • It is fast and easy to use class _bstr_t to convert between wchar_t* and char*.

History

  • 2010-9-21 2 enhancements, thanks Scott Leckie
  • 2010-4-29 2 Bugs fixed, thanks Wong Shao Voon
  • 2009-9 Fully featured version
  • 2008-7 Initial version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Philips
China China
Cheng Shi is a software developer in China. He is interested in COM, ATL, Direct3D, etc. He is now working for Philips.

Cheng Shi loves Formula1 and watchs every Grand Prix. He is dreaming to be a racing car driver. Hope his dream can come true.

Comments and Discussions

 
Bugnon ANSI characters Pin
Member 1500394417-Aug-21 8:15
Member 1500394417-Aug-21 8:15 
QuestionHow to fix "no such name or directory" error Pin
T1xT18-Jun-21 22:45
T1xT18-Jun-21 22:45 
BugYou have a bug in WinHttpClient.h Pin
Member 147863499-Feb-21 10:04
Member 147863499-Feb-21 10:04 
QuestionCompile error in WinHttpClient.h on first example - found fix Pin
JackSimmons8-Sep-20 9:52
JackSimmons8-Sep-20 9:52 
Questionsend file Pin
mattmail110-Aug-19 19:54
mattmail110-Aug-19 19:54 
BugI found a small bug Pin
Per Nilsson26-Dec-18 23:08
Per Nilsson26-Dec-18 23:08 
QuestionSend PUT request Pin
Member 139410648-Aug-18 8:07
Member 139410648-Aug-18 8:07 
QuestionHttp DELETE Pin
Member 1285026314-Jun-18 8:53
Member 1285026314-Jun-18 8:53 
QuestionDoes not work with MinGW, also, should switch to using std::Regex Pin
robstoddard9-Apr-18 6:01
robstoddard9-Apr-18 6:01 
Questionit doesn't works with windows xp somehow Pin
sandeepcyber28-Oct-17 1:13
sandeepcyber28-Oct-17 1:13 
QuestionSend data in POST body Pin
Member 1337088819-Oct-17 9:45
Member 1337088819-Oct-17 9:45 
GeneralThis is not multi-platform Pin
Jaime Stuardo - Chile12-Apr-17 7:27
Jaime Stuardo - Chile12-Apr-17 7:27 
GeneralTLS 1.2 Support Pin
Member 946680624-Mar-17 5:43
Member 946680624-Mar-17 5:43 
GeneralRe: TLS 1.2 Support Pin
cdichter9-Nov-17 9:49
cdichter9-Nov-17 9:49 
QuestionIs there any way to call "PUT" webservice with this code? Pin
nallana vijayakumar17-Nov-16 19:18
nallana vijayakumar17-Nov-16 19:18 
AnswerRe: Is there any way to call "PUT" webservice with this code? Pin
lmarcos_Etra9-Feb-17 1:20
lmarcos_Etra9-Feb-17 1:20 
AnswerRe: Is there any way to call "PUT" webservice with this code? Pin
Member 1398642516-Sep-18 9:49
Member 1398642516-Sep-18 9:49 
Questionredirect header Pin
Chandrak Baxi25-Dec-15 21:27
Chandrak Baxi25-Dec-15 21:27 
SuggestionStudents will not make it Pin
Member 84741974-Apr-15 14:47
Member 84741974-Apr-15 14:47 
GeneralRe: Students will not make it Pin
Genkobar16-Jun-15 16:33
Genkobar16-Jun-15 16:33 
SuggestionHttps example Pin
Member 1067569216-Mar-14 23:06
Member 1067569216-Mar-14 23:06 
QuestionFew include files missing Pin
Pandian Raju17-Feb-14 9:28
Pandian Raju17-Feb-14 9:28 
QuestionUser and password Authentication Pin
reivaj117 19-Dec-13 1:57
reivaj117 19-Dec-13 1:57 
AnswerRe: User and password Authentication Pin
shicheng22-Dec-13 0:34
shicheng22-Dec-13 0:34 
Questionwchar_t compile errors in RegExp.h Pin
Vern Jensen12-Dec-13 16:47
Vern Jensen12-Dec-13 16:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.