tags:

views:

44

answers:

2

How do you do HTTP transfers in MFC?

Which library would you use to access HTTP resources in MFC?

+1  A: 

See the MFC wrappers for the WinInet library.

Jim Lamb
Related question to this. See: http://stackoverflow.com/questions/3040140/protocol-buffers-with-c-client-and-c-back-endHow do you connect the two together?
buttercup
that is, connect Protocol Buffers with WinInet and with C# back-end Protocol Buffer.net
buttercup
A: 

Here are three possible ways:

  1. Write the socket code yourself.
  2. Use the libcurl library.
  3. Use the C++ abstraction for libcurl called cURLpp.
Amardeep