tags:

views:

124

answers:

3

Possible Duplicate:
What C++ library should I use to implement a HTTP client?

What library I can use for sending POST and GET requests in C++

+5  A: 

libcurl

http://curl.haxx.se/

It works and is really simple.

Nathan
+2  A: 

You can use libcurl or its c++ wrapper curlpp

zebrabox
thanx for curlpp
Antigluk
+1  A: 

what about cpp-netlib?

http://sourceforge.net/projects/cpp-netlib/

cu3dots