Click here to Skip to main content
15,881,875 members
Articles / Desktop Programming / MFC
Article

Simple HTTP Client using WININET

Rate me:
Please Sign up or sign in to vote.
3.76/5 (46 votes)
2 Sep 20031 min read 588.2K   13.2K   145   167
Simple HTTP Client, HTTP GET, HTTP POST, HTTP POST-MultiPartFormData

Introduction

This class is used for HTTP REQUEST. It supports HTTP GET, HTTP POST and HTTP POST-MultiPartFormData.

Class Overview

C++
class GenericHTTPClient {
public:                    
    ...
    // CONSTRUCTOR & DESTRUCTOR
    GenericHTTPClient();
    virtual ~GenericHTTPClient();

    ...
    // Connection handler    
    BOOL Connect(    LPCTSTR szAddress,
            LPCTSTR szAgent = __DEFAULT_AGENT_NAME,
            unsigned short nPort = INTERNET_DEFAULT_HTTP_PORT,
            LPCTSTR szUserAccount = NULL,
            LPCTSTR szPassword = NULL);

    BOOL Close();
    VOID InitilizePostArguments();

    // HTTP Arguments handler    
    VOID AddPostArguments(LPCTSTR szName, DWORD nValue);
    VOID AddPostArguments(LPCTSTR szName, LPCTSTR szValue, 
      BOOL bBinary = FALSE);

    // HTTP Method handler 
    BOOL Request(    LPCTSTR szURL,
            int nMethod = GenericHTTPClient::RequestGetMethod,
            LPCTSTR szAgent = __DEFAULT_AGENT_NAME);

    BOOL RequestOfURI(LPCTSTR szURI, int nMethod = 
           GenericHTTPClient::RequestGetMethod);
    BOOL Response(PBYTE pHeaderBuffer, DWORD dwHeaderBufferLength, 
           PBYTE pBuffer, DWORD dwBufferLength, DWORD &dwResultSize);    
    LPCTSTR QueryHTTPResponse();
    LPCTSTR QueryHTTPResponseHeader();    

    // General Handler
    DWORD GetLastError();
    LPCTSTR GetContentType(LPCTSTR szName);
    VOID ParseURL(LPCTSTR szURL, LPTSTR szProtocol, LPTSTR szAddress, 
          DWORD &dwPort, LPTSTR szURI);
    
protected:                
    ...
};
  • Connect(...) method connects to HTTP Server.
  • Close() method closes connection. These are used with RequestOfURI(...).
  • InitilizePostArguments() method initializes post arguments.
  • AddPostArguments(...) method is supported so that you can add new post arguments of the following 3 types ( TCHAR, DWORD, FILE).
  • Request(...) method is for you to attempt request for HTTP REQUEST( GET, POST, POST-MULTIPARTFORMDATA) with URL. HTTP METHOD indirector have 3 types.
    • GenericHTTPClient::GetMethod is HTTP GET REQUEST
    • GenericHTTPClient::PostMethod is HTTP POST REQUEST
    • GenericHTTPClient::PostMultiPartsFormData is HTTP POST REQUEST with BINARY FORM DATA
  • RequestOfURI(...) method is that you could have attempt request for HTTP REQUEST with URI. This method is used with Connect(...) and Close().
  • Response(...) method is that you have HTTP Response by BYTES.
  • QueryHTTPResponse() method is you have receive HTML of your HTTP REQUEST.
  • QueryHTTPResponseHeader() method is you have receive HTTP HEADER about QueryHTTPResponse().
  • GetLastError() method is you get windows error code.
  • GetContentType(...) method is you have get MIME-TYPE.
  • ParseURL(...) method parse URL to protocol(HTTP, HTTPS) and address(or hostname) and port, URI.

Usage

Now, you have to simply do  HTTP GET REQUEST iteration.

C++
....

GenericHTTPClient    httpClient;

if(httpRequest.Request("http://www.codeproject.com")){
    LPCTSTR szHTML=httpRequest.QueryResponse();
}else{
    LPVOID     lpMsgBuffer;
    DWORD dwRet=FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER | 
             FORMAT_MESSAGE_FROM_SYSTEM,
             NULL,
             httpRequest.GetLastError(),
             MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
             reinterpret_cast<LPTSTR>(&lpMsgBuffer),
             0,
             NULL);                         

    MessageBox( reinterpret_cast<LPTSTR>(lpMsgBuffer), "ERROR", MB_OK);
    LocalFree(lpMsgBuffer);
}

This is HTTP POST REQUEST with file posting ( HTTP POST Multipart/form-data)

C++
GenericHTTPClient *pClient=new GenericHTTPClient();

    pClient->InitilizePostArguments();
    pClient->AddPostArguments(__TAG_USRID, szUserID);
    pClient->AddPostArguments(__TAG_JUMIN, szSocialIndex);
    pClient->AddPostArguments(__TAG_SRC, szSource);
    pClient->AddPostArguments(__TAG_DST, szDestination);            
    pClient->AddPostArguments(__TAG_FORMAT, szFormat);
    pClient->AddPostArguments(__TAG_SUBJECT, szMessage);

    if(bCharge){
        pClient->AddPostArguments(__TAG_CHARGE, "Y");
    }else{
        pClient->AddPostArguments(__TAG_CHARGE, "N");
    }
    pClient->AddPostArguments(__TAG_CPCODE, szCPCode);
    pClient->AddPostArguments(__TAG_FILE, szFile, TRUE);

    if(pClient->Request(szURL, 
        GenericHTTPClient::RequestPostMethodMultiPartsFormData)){        
        LPCTSTR szResult=pClient->QueryHTTPResponse();
    }else{
#ifdef    _DEBUG
        LPVOID     lpMsgBuffer;
        DWORD dwRet=FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER |
                      FORMAT_MESSAGE_FROM_SYSTEM,
                      NULL,
                      pClient->GetLastError(),
                      MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
                      reinterpret_cast<LPTSTR>(&lpMsgBuffer),
                      0,
                      NULL);
        OutputDebugString(reinterpret_cast<LPTSTR>(lpMsgBuffer));
        LocalFree(lpMsgBuffer);
#endif
    }

}

Thanks

Thanks that you have been reading my article and my bad English. ;p

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)
Poke tongue | ;-P

Comments and Discussions

 
QuestionNewer version with HTTPS/SSL support? Pin
cristi_gheorghe18-Jun-18 5:09
cristi_gheorghe18-Jun-18 5:09 
QuestionStill one of the best free emailers out there - but can't get it working in Unicode Pin
Michael B Pliam29-Jan-13 18:36
Michael B Pliam29-Jan-13 18:36 
AnswerRe: Still one of the best free emailers out there - but can't get it working in Unicode Pin
Robert Fransson29-May-14 5:56
Robert Fransson29-May-14 5:56 
QuestionMany and many ERRORS.... Pin
Aric Wang12-Sep-11 16:39
Aric Wang12-Sep-11 16:39 
GeneralMy vote of 5 Pin
william cc6-Oct-10 16:57
william cc6-Oct-10 16:57 
GeneralUnable to compile using VC 2005 Pin
Michael B Pliam23-Jun-09 6:34
Michael B Pliam23-Jun-09 6:34 
GeneralRe: Unable to compile using VC 2005 Pin
Michael B Pliam23-Jun-09 6:38
Michael B Pliam23-Jun-09 6:38 
GeneralError in Release mode Pin
Member 33281254-Jun-09 22:57
Member 33281254-Jun-09 22:57 
GeneralMy vote of 2 Pin
KarstenK26-Jan-09 21:01
mveKarstenK26-Jan-09 21:01 
QuestionHttpOpenRequest GetLastError return 122 Pin
caoxin.wh22-Dec-08 18:00
caoxin.wh22-Dec-08 18:00 
Generalcan't compile Pin
gu@z12-Nov-08 16:05
gu@z12-Nov-08 16:05 
GeneralAdding headers Pin
Nirav Doshi29-Jun-08 9:06
Nirav Doshi29-Jun-08 9:06 
AnswerRe: Adding headers [modified] Pin
Nirav Doshi2-Jul-08 1:49
Nirav Doshi2-Jul-08 1:49 
GeneralRe: Adding headers Pin
Ray Gerami27-Jul-09 10:09
Ray Gerami27-Jul-09 10:09 
GeneralReading binary data Pin
Edyb27-Jun-08 4:10
Edyb27-Jun-08 4:10 
GeneralUpload file with size greater that 3MB Pin
hishree24-Jun-08 21:06
hishree24-Jun-08 21:06 
QuestionSupport for HTTPS/SSL Pin
DavidJHubbard17-Jun-08 5:08
DavidJHubbard17-Jun-08 5:08 
Generalinvalid argument internetclosehandle argument1 hinternet:0x00cc0004 Pin
micosun29-Apr-08 8:11
micosun29-Apr-08 8:11 
QuestionWhy does the CheckConnectionExists() function fail when there is clearly an Internet Connection? Pin
Michael B Pliam24-Apr-08 17:31
Michael B Pliam24-Apr-08 17:31 
QuestionHelp about Upload the File(How to set the parameter) Pin
hishree16-Mar-08 20:36
hishree16-Mar-08 20:36 
GeneralSimple HTTP Client using WININET Pin
Asia_chenchen21-Sep-07 5:51
Asia_chenchen21-Sep-07 5:51 
Questionwhat is the usage 0f Response? Pin
sunwayland9-Jul-07 17:12
sunwayland9-Jul-07 17:12 
Questionhelp me,how to send this post? Pin
shellhy4-Jul-07 0:40
shellhy4-Jul-07 0:40 
GeneralBytes sent / received Pin
__TSX__23-Apr-07 2:02
__TSX__23-Apr-07 2:02 
Generalsuck Pin
_ppr10-Dec-06 0:55
_ppr10-Dec-06 0:55 

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.