Buenas,
Llevo ya unos dias investigando sobre como hacer un web service en C++, tengo muchas dudas y no se por donde empezar.
He estado instalando el sdk desde el nuget del visual studio 2010 y he probado el codigo de ejemplo de la web, para así poder entender un poco como va esto:
Código C++:
Ver original#include <cpprest/http_client.h>
#include <cpprest/filestream.h>
using namespace utility; // Common utilities like string conversions
using namespace web; // Common features like URIs.
using namespace web::http; // Common HTTP functionality
using namespace web::http::client; // HTTP client features
using namespace concurrency::streams; // Asynchronous streams
int main(int argc, char* argv[])
{
auto fileStream = std::make_shared<ostream>();
// Open stream to output file.
pplx::task<void> requestTask = fstream::open_ostream(U("results.html")).then([=](ostream outFile)
{
*fileStream = outFile;
// Create http_client to send the request.
http_client client(U("http://www.bing.com/"));
// Build request URI and start the request.
uri_builder builder(U("/search"));
builder.append_query(U("q"), U("Casablanca CodePlex"));
return client.request(methods::GET, builder.to_string());
})
// Handle response headers arriving.
.then([=](http_response response)
{
printf("Received response status code:%u\n", response.
status_code());
// Write response body into the file.
return response.body().read_to_end(fileStream->streambuf());
})
// Close the file stream.
.then([=](size_t)
{
return fileStream->close();
});
// Wait for all the outstanding I/O to complete and handle any exceptions
try
{
requestTask.wait();
}
catch (const std::exception &e)
{
printf("Error exception:%s\n", e.
what()); }
return 0;
}
No puedo ejecutarlo ya que me salen los siguientes errores
pplx::task<void> requestTask = fstream::open_ostream(U("results.html")).then([=](ostream outFile)
Me dice que fstream --> Error: no existe ninguna conversión adecuada definida por el usuario de "pplx::task<pplx::details::_BadContinuationParamTy pe>" a "pplx:task<void>"
Alguna idea?
Despues de crear el proyecto he echo boton derecho y he añadido el sdk desde el NuGet package Manager.
No se si alguien me puede dar una mano con esto.
Saludos