views:

68

answers:

4

Im using DataServices and OData protocol, i need to generate Get, Post, Delete, and Update from a c++ aplication. how i can do this? the easiest way ??

A: 

You can use MS stuff: Wininet or WinHTTP.

Eugene
+1  A: 

The POCO library is another alternative to cURL

Yacoby
A: 

Boost.Asio. There's an example of a simple HTTP client (with a GET request).

anno