vote up 3 vote down star
5

I'm looking for c++ library implementing HTTP client.
It should handle cookies as well.
What would you propose?

Thank you in advance for your time.

flag

65% accept rate
duplicate: stackoverflow.com/questions/342918/… – lothar May 4 at 23:20
3  
imho no, that is ANOTHER question (asyncronous library, threading) – dfa May 4 at 23:22

7 Answers

vote up 5 vote down check

Curl++ is an option, particularly if you want things in more of a C++ style.

link|flag
vote up 1 vote down

Take a look at Poco Libraries.

I started using them as they are portable and it's a joy to work with. Simple and clean - though I haven't dived in anything fancy for the moment.

link|flag
Poco is a very nice library that in my opinion deserves more publicity than it seems to get – JB Jul 31 at 12:21
vote up 0 vote down

You can try WinInet

http://msdn.microsoft.com/en-us/library/aa385331(VS.85).aspx

In contrast to WinHTTP, it's more client-side oriented.

link|flag
Thanks for your suggestion. Take a look at my comment on WinHTTP answer on this question as it applies here as well. "// This call will fail on the first pass, because // no buffer is allocated. if(!HttpQueryInfo(hHttp,HTTP_QUERY_RAW_HEADERS_CRLF, (LPVOID)lpOutBuffer,&dwSize,NULL))" "For ease of use, WinINet abstracts these protocols into a high-level interface." High-level interface? Maybe it was high-level interface 20 years ago... – Piotr Dobrogost May 5 at 7:55
You can also look at URL monikers: msdn.microsoft.com/en-us/library/…, it relies on WinInet(as I think), but provides COM like interface. – Eugene May 5 at 9:58
vote up 0 vote down

If it's for windows, take a look at Windows HTTP Services (WinHTTP)

http://msdn.microsoft.com/en-us/library/aa384273(VS.85).aspx

Microsoft Windows HTTP Services (WinHTTP) provides developers with an HTTP client application programming interface (API) to send requests through the HTTP protocol to other HTTP servers.

WinHTTP offers both a C/C++ application programming interface (API) and a Component Object Model (COM) automation component suitable for use in Active Server Pages (ASP) based applications.

For Cookies http://msdn.microsoft.com/en-us/library/aa383261(VS.85).aspx

link|flag
Thanks for your suggestion. It's plain C without any of C++ there. I'd really like to make use of Bjarne's hard work (research.att.com/~bs). It should be forbidden for a couple of years now to use C in application programming :) – Piotr Dobrogost May 5 at 7:45
vote up 0 vote down

On Windows you can drive IE using IWebBrowser2 interface.

link|flag
vote up 4 vote down

C++ (STL) does not have a HTTP or network library by default, you will have to do with something else.

libcurl should do what you want. cURL++ is the same libcurl wrapped in a shiny C++ wrapper.

link|flag
vote up 7 vote down
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.