Click here to Skip to main content
Licence CPOL
First Posted 10 Dec 2009
Views 12,444
Downloads 651
Bookmarked 18 times

Asynchronous WinHTTP Library

By | 10 Dec 2009 | Article
Tiny WinHTTP API wrapper library for asynchronous HTTP with callback handler

Introduction

The AsyncWinHttp is a simple wrapper of WinHTTP to achieve asynchronous HTTP. WinHtpp API is a replacement of WinINet API (see About WinHTTP for more information of why Microsoft recommends to use WinHttp API).

The library provides a very simple interface, the user can register a callback function when initializing the class. And the callback will be invoked when HTTP finished. The interface is shown as:

Background

This code is based on the sample of WinHTTP from MSDN, with a wrapper for simple use. 

Using the Code

To use the library is very simple, all you need is the two files:

  • AsyncWinHttp.h
  • AsyncWinHttp.cpp

First, you need to define your callback functions. These functions will be invoked when HTTP finished (whether succeeded or failed):

void WinHttp_CallBack(AsyncWinHttp* asyncWinHttp)
{
  // check if success or failed
  if (asyncWinHttp->status.Status() == ASYNC_WINHTTP_ERROR)
  {
    // print error message
    printf("%S", asyncWinHttp->status.Desc().c_str());
  }
  else // success
  {
    // print response, do your handling here ...
    std::string response;
    asyncWinHttp->GetResponseRaw(response);
    printf("%s", response.c_str());
  }
}

Now you can invoke the request to HTTP resources:

{
  AsyncWinHttp http;
  http.Initialize(WinHttp_CallBack);
  http.SetTimeout(3 * 60 * 1000);  // time out is 3 minutes
  http.SendRequest(L"http://www.google.cn");
}

Of course, you can use a Windows event to wait for the asynchronous HTTP call to finish, as shown in the demo, but I think most of you will not do so, since we need a really asynchronous HTTP. ;)

History

  • 11th December, 2009: Initial post 

License

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

About the Author

zoufeiyy



China China

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalan error :REQUEST_ERROR - error 12002, result API_RECEIVE_RESPONSE Pinmemberjackinelee21:43 23 Apr '10  
GeneralRe: an error :REQUEST_ERROR - error 12002, result API_RECEIVE_RESPONSE Pinmemberzoufeiyy2:41 25 Mar '12  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 11 Dec 2009
Article Copyright 2009 by zoufeiyy
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid