Click here to Skip to main content
15,868,016 members
Articles / Desktop Programming / MFC
Article

CHttpClient - A Helper Class Using WinInet

Rate me:
Please Sign up or sign in to vote.
4.96/5 (59 votes)
10 Aug 20073 min read 483.6K   24.8K   163   160
A C++ class which helps you to interact with a HTTP web server.
Screenshot - lyoulhttpclient.jpg

Introduction

CHttpClient is a helper class using WinInet API. The purpose of this class is to help you interact with a HTTP web server. The class design goal is as follows:

  • Easy to use.
  • As many flexibilities as possible.
  • Strict error handling.

I will briefly show you how to use this class. All detailed description has been documented in the attached help file.

How to use CHttpClient

In your project, include the following files:

  • RyeolException.h
  • RyeolException.cpp
  • RyeolHttpClient.h
  • RyeolHttpClient.cpp
  • SafeInt.hpp

In your stdafx.h file, add the following line:

C++
#include "RyeolHttpClient.h"

Note: The namespace and file names have been changed. If you use the previous version of the CHttpClient, you need to update as follows:

  • LyoulException.h --> RyeolException.h
  • LyoulException.cpp --> RyeolException.cpp
  • LyoulHttpClient.h --> RyeolHttpClient.h
  • LyoulHttpClient.cpp --> RyeolHttpClient.cpp
  • #include "LyoulHttpClient.h" --> #include "RyeolHttpClient.h"
  • using namespace Lyoul --> using namespace Ryeol

How to Send a Request Using HTTP GET

CHttpClient supports RequestGet method which sends a request using HTTP GET:

C++
// Retrieves the resource specified by the szUrl using HTTP GET request.
// szUrl            [in] A HTTP URL.
// bUseCache        [in] Specifies whether to use cache.
CHttpResponse * CHttpClient::RequestGet (PCSZ szUrl, 
   BOOL bUseCache = FALSE) throw (Exception &) ;

The following code demonstrates the basic usage of the RequestGet method:

C++
using namespace Ryeol ;

CHttpClient         objHttpReq ;
CHttpResponse *     pobjHttpRes = NULL ;

try {
    // Initialize the User Agent
    objHttpReq.SetInternet (_T ("My User Agent v1.0")) ;

    // Specifies whether to use UTF-8 encoding. 
    // (This uses ANSI encoding)
    // Default is FALSE
    objHttpReq.SetUseUtf8 (FALSE) ;

    // Specifies a code page for ANSI strings. 
    // (This uses Korean)
    // Default is CP_ACP
    objHttpReq.SetAnsiCodePage (949) ;

    // Add user's custom HTTP headers
    objHttpReq.AddHeader (_T ("Ryeol-Magic"), _T ("My Magic Header")) ;
    objHttpReq.AddHeader (_T ("User-Magic"), _T ("User's Magic Header")) ;

    // Add user's parameters
    objHttpReq.AddParam (_T ("where"), _T ("nexearch")) ;
    objHttpReq.AddParam (_T ("frm"), _T ("t1")) ;
    objHttpReq.AddParam (_T ("query"), 
       _T ("%C3%D6%C1%F6%BF%EC"), CHttpClient::ParamEncodedValue) ;

    // Send a request
    pobjHttpRes = 
      objHttpReq.RequestGet (_T ("http://search.naver.com/search.naver")) ;

    ...     // Place codes to handle the returned CHttpResponse object.

} catch (httpclientexception & e) {
    ...     // Place exception handling codes here.
}

How to Send a Request Using HTTP POST

The HTTP POST method is used in two ways. One is to post simple text, the other is to upload files. To post simple text, CHttpClient provides BeginPost method.

C++
// Starts a new HTTP POST request
// szUrl            [in] A HTTP URL.
// bUseCache        [in] Specifies whether to use cache.
void CHttpClient::BeginPost (PCSZ szUrl, 
   BOOL bUseCache = FALSE) throw (Exception &) ;

The following code demonstrates the basic usage of the BeginPost method:

C++
using namespace Ryeol ;

CHttpClient         objHttpReq ;
CHttpResponse *     pobjHttpRes = NULL ;

try {
    // Initialize the User Agent
    objHttpReq.SetInternet (_T ("My User Agent v1.0")) ;

    // Add user's custom HTTP headers
    objHttpReq.AddHeader (_T ("Ryeol-Magic"), _T ("My Magic Header")) ;
    objHttpReq.AddHeader (_T ("User-Magic"), _T ("User's Magic Header")) ;

    // Add user's parameters
    objHttpReq.AddParam (_T ("st"), _T ("kw")) ;
    objHttpReq.AddParam (_T ("target"), _T ("WinInet")) ;

    // Start a new request
    objHttpReq.BeginPost (_T ("http://www.codeproject.com/info/search.asp")) ;

    // Specifies the number of bytes to send when the Proceed method is called.
    const DWORD     cbProceed = 1024 ;  // 1K

    do {

        ...     // Place codes to report progress information to user.
    } while ( !(pobjHttpRes = objHttpReq.Proceed (cbProceed)) ) ;
    ...     // Place codes to handle the returned CHttpResponse object.
} catch (httpclientexception & e) {
    ...     // Place exception handling codes here.
}

To upload file, CHttpClient provides BeginUpload method.

// Starts a new UPLOAD request
// szUrl            [in] A HTTP URL.
// bUseCache        [in] Specifies whether to use cache.
void CHttpClient::BeginUpload (PCSZ szUrl, 
   BOOL bUseCache = FALSE) throw (Exception &) ;

The following code demonstrates the basic usage of the BeginUpload method:

C++
using namespace Ryeol ;

CHttpClient         objHttpReq ;
CHttpResponse *     pobjHttpRes = NULL ;

try {
    // Initialize the User Agent
    objHttpReq.SetInternet (_T ("My User Agent v1.0")) ;

    // Add user's custom HTTP headers
    objHttpReq.AddHeader (_T ("Ryeol-Magic"), _T ("My Magic Header")) ;
    objHttpReq.AddHeader (_T ("User-Magic"), _T ("User's Magic Header")) ;

    // Add user's parameters
    objHttpReq.AddParam (_T ("nohtml"), _T ("1")) ;
    objHttpReq.AddParam (_T ("title"), _T ("The K-NET photo")) ;
    objHttpReq.AddParam (_T ("content"), _T ("A photo of the K-NET")) ;

    // Specifies a file to upload
    objHttpReq.AddParam (_T ("ufile01"), 
       _T ("D:\\My Photo\\K-NET\\photo1.jpg"), 
       CHttpClient::ParamFile) ;

    // Start a new request
    objHttpReq.BeginUpload (_T ("http://club.hooriza.com")
       _T ("/cmd/box.html?clubid=1&boxid=53&action=store&link=")) ;

    // Specifies the number of bytes to send when the Proceed method is called.
    const DWORD     cbProceed = 1024 ;  // 1K

    do {

        ...     // Place codes to report progress information to user.
    } while ( !(pobjHttpRes = objHttpReq.Proceed (cbProceed)) ) ;
    ...     // Place codes to handle the returned CHttpResponse object.
} catch (httpclientexception && e) {
    ...     // Place exception handling codes here.
}

How to Handle the Returned CHttpResponse Object

When you send a request using CHttpClient, all the methods will return CHttpResponse object. CHttpResponse represents the response returned by a HTTP web server. CHttpResponse provides the following methods:

C++
// Returns the number of headers of which name is the szName
DWORD CHttpResponse::GetHeaderCount (PCSZ szName) throw (Exception &) ;

// Returns the header of which name is the szName
PCSZ CHttpResponse::GetHeader (PCSZ szName, 
          DWORD nIdx = 0) throw (Exception &) ;

// Returns the HTTP status code returned by a HTTP server
DWORD CHttpResponse::GetStatus (void) throw (Exception &) ;

// Returns the HTTP status text returned by a HTTP server
PCSZ CHttpResponse::GetStatusText (void) throw (Exception &) ;

// Retrieves the length of the content returned by a HTTP server
BOOL CHttpResponse::GetContentLength (DWORD & cbContLen) throw (Exception &) ;

// Reads the content returned by a HTTP server
DWORD CHttpResponse::ReadContent (BYTE * pbyBuff, 
          DWORD cbBuff) throw (Exception &) ;

The following code demonstrates the basic usage of the CHttpResponse object:

C++
using namespace Ryeol ;

CHttpResponse *     pobjHttpRes = NULL ;

try {
    // Get the CHttpResponse object
    pobjHttpRes = ... ;

    // Reads the HTTP status code
    _tprintf (_T ("%u"), pobjHttpRes->GetStatus ()) ;
    // Reads the HTTP status text
    _tprintf (_T (" %s\n"), pobjHttpRes->GetStatusText ()) ;

    // Reads HTTP headers using an array of header names
    static LPCTSTR      szHeaders[] = 
    { _T ("Server"), _T ("Date"), _T ("X-Powered-By"), 
                _T ("Content-Length"), _T ("Set-Cookie")
    , _T ("Expires"), _T ("Cache-control"), 
                _T ("Connection"), _T ("Transfer-Encoding")
    , _T ("Content-Type") } ;

    LPCTSTR     szHeader ;
    for (size_t i = 0; i < sizeof (szHeaders) / sizeof (LPCTSTR); i++) {
        if ( szHeader = pobjHttpRes->GetHeader (szHeaders[i]) )
            _tprintf (_T ("%s: %s\n"), szHeaders[i], szHeader) ;
        else
            // If the header is not found..
            _tprintf (_T ("'%s' header does not exist..\n"), 
                                                    szHeaders[i]) ;
    }
    _tprintf (_T ("\n")) ;

    // Checks whether the returned stream is a text
    BOOL        bIsText = FALSE ;
    if ( szHeader = pobjHttpRes->GetHeader (_T ("Content-Type")) )
        bIsText = (0 == ::_tcsncicmp (szHeader, _T ("text/"), 5)) ;

    // Reads the length of the stream
    DWORD       dwContSize ;
    // If the length is not specified
    if ( !pobjHttpRes->GetContentLength (dwContSize) )
        dwContSize = 0 ;

    const DWORD     cbBuff = 1024 * 10 ;
    BYTE            byBuff[cbBuff] ;
    DWORD           dwRead ;
    size_t          cbTotal = 0 ;

    // Reads the data stream returned by the HTTP server.
    while ( dwRead = pobjHttpRes->ReadContent (byBuff, cbBuff - 1) ) {
        cbTotal += dwRead ;

        if ( bIsText ) {
            byBuff[dwRead] = '\0' ;
            printf ("%s", reinterpret_cast<LPCSTR> (byBuff)) ;
        }
    }
    if ( !bIsText )
        _tprintf (_T ("%u bytes skipped..\n"), cbTotal) ;
} catch (httpclientexception & e) {
    ...     // Place exception handling codes here.
}
delete pobjHttpRes ;
pobjHttpRes = NULL ;

How to Handle Exception

When an error occurs, httpclientexception object is thrown:

C++
class httpclientexception {
public:
    // Returns the last error code.
    // The error codes is defined in RyeolHttpClient.h
    DWORD LastError (void) const throw () ;

    // Returns the last error message.
    LPCTSTR errmsg (void) const throw () ;

    // Returns the last win32 error code retrieved by
    // using ::GetLastError when an error occurred.
    DWORD Win32LastError (void) const throw () ;
} ;

Before throwing an exception, most methods restore their internal states (all or nothing like transaction). But if you call BeginPost or BeginUpload method, the POST context is automatically canceled. You should write the following try-catch block to handle the exception:

C++
using namespace Ryeol ;

try {
    ...     // Place codes which throw a httpclientexception exception
} catch (httpclientexception & e) {
    _tprintf (_T ("An error has been occured\n")) ;
    _tprintf (_T ("ErrCode: 0x%x\n"), e.LastError ()) ;
    _tprintf (_T ("ErrMsg: %s\n"), e.errmsg ()) ;
    if ( e.Win32LastError () != NO_ERROR ) {
        TCHAR       szErrMsg[512] ;
        GetWinInetErrMsg (szErrMsg, 512, e.Win32LastError ()) ;

        _tprintf (_T ("Win32ErrCode: 0x%x\n"), e.Win32LastError ()) ;
        _tprintf (_T ("Win32ErrMsg: %s\n"), szErrMsg) ;
    }
}

How to Show the Progress Information to the User

If you call BeginPost or BeginUpload method, you can retrieve the progress information using the Query method:

C++
// Queries progress information of the current POST context
// objPostStat      [out] A CHttpPostStat object.
void CHttpClient::Query (CHttpPostStat & objPostStat) throw () ;

CHttpPostStat represents the progress information of the current POST context. The following code demonstrates the basic usage of the CHttpPostStat object:

C++
using namespace Ryeol ;

CHttpClient         objHttpReq ;
CHttpResponse *     pobjHttpRes = NULL ;
size_t              cbProceed = 1024 ;  // 1k

try {
    ... ;   // Intialize the CHttpClient object

    // Starts a new POST request
    objHttpReq.BeginPost (...) or objHttpReq.BeginUpload (...) ;

    // Displays progress information
    CHttpPostStat       objPostStat ;
    do {
        // Retrieves progress information
        objHttpReq.Query (objPostStat) ;

        _tprintf (_T ("\nPost in progress... %2u/%2u\n")
            , objPostStat.PostedCount ()   // The number of posted parameters
            , objPostStat.TotalCount ()) ; // The total number of parameters

        _tprintf (_T ("%s: %10u/%10u %10u/%10u %10u/%10u\n")
            // The name of the current parameter
            , objPostStat.CurrParam ()
            // The number of posted bytes of the current parameter
            , objPostStat.CurrParamPostedByte ()
            // The total number of bytes of the current parameter
            , objPostStat.CurrParamTotalByte ()
            // The number of posted bytes of the request
            , objPostStat.PostedByte ()
            // The total number of bytes of the request
            , objPostStat.TotalByte ()
            // The actual number of posted bytes of the request
            , objPostStat.ActualPostedByte ()
            // The actual total number of bytes of the request
            , objPostStat.ActualTotalByte ()) ;

        // If the current parameter is a file parameter,
        // displays the file path
        if ( objPostStat.CurrParamIsFile () )
            _tprintf (_T ("-->%s\n")
                , objPostStat.CurrFile ()) ;
        // Sends the number of bytes specified by cbProceed to the server
    } while ( !(pobjHttpRes = objHttpReq.Proceed (cbProceed)) ) ;
    ... ;   // Handles the returned CHttpResponse object
} catch (httpclientexception & e) {
    ...     // Place exception handling codes here.
}

About CHttpClient COM Edition

CHttpClient COM Edition is the component version of CHttpClient. I won't explain here how to use it because it is similar to CHttpClient. You can refer to the attached examples and the help file of CHttpClient COM edition. If you want to use CHttpClient COM edition, you need to install RyeolHttpClient2.dll. Because it is a COM DLL, you have to register it by using the regsvr32.exe program. You can install it anywhere you want provided you don't distribute it. But if you want to distribute it, I recommend that you install it in the %WINDOWS%System32 folder and do not remove it even if your program is uninstalled.

History

  • 3rd February, 2006
    • The assertion behavior has been changed to throw an exception if the assertion expression is failed.
    • The pragma warning (push) and (pop) directives are used to restore the previous warning state.
    • The SaveContent method has been added.
    • The namespace and file names have been changed.
    • CHttpClient COM Edition has been added.
  • 9th August, 2004
    • Some methods have been added to support proxy authorization.
  • 29th July, 2004
    • Initial release.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer
Korea (Republic of) Korea (Republic of)
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 2 Pin
MaitreyaBuddha16-May-15 1:15
MaitreyaBuddha16-May-15 1:15 
General[My vote of 2] Too complex - not user friendly Pin
MaitreyaBuddha16-May-15 1:13
MaitreyaBuddha16-May-15 1:13 
GeneralMy vote of 5 Pin
Member 111107042-May-15 5:26
Member 111107042-May-15 5:26 
QuestionWinInet and WinHttp Pin
Thejaswi Krishna4-Sep-13 23:47
Thejaswi Krishna4-Sep-13 23:47 
GeneralRe: WinInet and WinHttp Pin
JO Hyeong-Ryeol5-Sep-13 11:32
JO Hyeong-Ryeol5-Sep-13 11:32 
QuestionSome Win7 Pcs BeginUpload is giving 12002( ERROR_INTERNET_TIMEOUT) error Pin
KUMARRaju21-May-13 8:02
KUMARRaju21-May-13 8:02 
AnswerRe: Some Win7 Pcs BeginUpload is giving 12002( ERROR_INTERNET_TIMEOUT) error Pin
JO Hyeong-Ryeol22-May-13 3:12
JO Hyeong-Ryeol22-May-13 3:12 
Questionsupoort for over 2.2G file upload Pin
merlin321-Jun-12 16:17
merlin321-Jun-12 16:17 
AnswerRe: supoort for over 2.2G file upload Pin
JO Hyeong-Ryeol25-Jun-12 3:06
JO Hyeong-Ryeol25-Jun-12 3:06 
GeneralRe: supoort for over 2.2G file upload Pin
merlin326-Jun-12 15:09
merlin326-Jun-12 15:09 
AnswerRe: supoort for over 2.2G file upload Pin
JO Hyeong-Ryeol27-Jun-12 3:16
JO Hyeong-Ryeol27-Jun-12 3:16 
GeneralRe: supoort for over 2.2G file upload Pin
merlin34-Jul-12 20:29
merlin34-Jul-12 20:29 
AnswerRe: supoort for over 2.2G file upload Pin
JO Hyeong-Ryeol5-Jul-12 11:06
JO Hyeong-Ryeol5-Jul-12 11:06 
GeneralRe: supoort for over 2.2G file upload Pin
merlin35-Jul-12 16:11
merlin35-Jul-12 16:11 
GeneralRe: supoort for over 2.2G file upload Pin
JO Hyeong-Ryeol7-Jul-12 3:25
JO Hyeong-Ryeol7-Jul-12 3:25 
Questionhow to set the postdata in COM version? Pin
apprentice31429-Mar-12 15:37
apprentice31429-Mar-12 15:37 
GeneralOne little fix for avoiding [error C2665: 'operator new'] problem in VS2008 Pin
BruceWang_korea16-Oct-09 1:45
BruceWang_korea16-Oct-09 1:45 
AnswerRe: One little fix for avoiding [error C2665: 'operator new'] problem in VS2008 Pin
JO Hyeong-Ryeol2-Nov-09 4:35
JO Hyeong-Ryeol2-Nov-09 4:35 
QuestionCrash in Windows mobile Pin
general_horse24-Sep-09 16:15
general_horse24-Sep-09 16:15 
AnswerRe: Crash in Windows mobile Pin
jassonwang10-Jan-10 20:01
jassonwang10-Jan-10 20:01 
QuestionHow to upload files? Pin
RichyMong10-Jun-09 21:05
RichyMong10-Jun-09 21:05 
AnswerRe: How to upload files? Pin
JO Hyeong-Ryeol12-Jun-09 5:56
JO Hyeong-Ryeol12-Jun-09 5:56 
GeneralRe: How to upload files? Pin
RichyMong14-Jun-09 15:49
RichyMong14-Jun-09 15:49 
GeneralIt seems to "some Resource leaks" [modified] Pin
North Trench20-May-09 20:28
North Trench20-May-09 20:28 
QuestionRe: It seems to "some Resource leaks" Pin
JO Hyeong-Ryeol21-May-09 5:48
JO Hyeong-Ryeol21-May-09 5:48 

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.