CHttpClient - A Helper Class Using WinInet

http://www.codeproject.com/Articles/7828/CHttpClient-A-Helper-Class-Using-WinInet

 

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:

你可能感兴趣的:(httpclient)