Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
1k views

Using CurlPP with vs2008

I'm trying to build a C++ console app in VS2008 using the static curlpp library. The code - which is curlpp example 00 - is as follows: #include "stdafx.h" #include #include #include using ...
4
votes
3answers
82 views

Progress Indicator for Multiple downloads with cURLpp

I am writing a program that downloads multiple files (at the moment its only 2). I am trying to get it to display a progress bar for each download using the ProgressFunction callback. The problem I am ...
3
votes
1answer
389 views

Failing to compile curlpp

I've been on this for a few hours now (and that's just today) so I could really use some help. I always code in a Windows environment so I am trying to add curlpp to my Code::Blocks project. I ...
2
votes
1answer
73 views

How do I add curlpp to my project?

I'm trying to make a transition from vb.net to C++ and I'm stuck on this. I downloaded curlpp from here which got me a .dll, .exp and .lib file. I added the directory that contains those 3 files to ...
2
votes
0answers
261 views

How to install cURLpp in Windows?

Complete newbie here, as you most probably guessed by my previous post. I can't seem to find anything on this, and I have never installed a library before. my previous question was answered with ...
2
votes
1answer
196 views

CURLpp: TLS Handshake Error

This question is similar to another one, concerning pyCURL I have the following error when I send a post request to a secure url, using CURLpp ...
2
votes
2answers
614 views

Downloading flv from youtube using curlpp on top of curl - video not playing

I"m using curlpp on to of curl lib in order to download videos from youtube. I have managed to download the flv but unable to open it using all sorts of video players. I used another youtube video ...
2
votes
3answers
879 views

Cross platform c++ with libcurl

I am a perl developer that has never went into the client side programming of things. I'd like to think that I'm a pretty good developer, except I know that my severe lack of knowledge of the way ...
1
vote
1answer
208 views

to get response using curlpp

I am using curlpp to receive the response. I am referring this example of curlpp site http://curlpp.org/index.php/examples/64-example-14. But I am not getting where the response is stored so that I ...
1
vote
0answers
194 views

cURLpp installation

I have downloaded, compiled and installed cURLpp. When I try to compile the example, it says that the headers can't be found (curlpp/curlpp.hpp etc.) but they are present in /usr/local/include. How do ...
1
vote
1answer
538 views

How to use cURLpp/libcurl with Visual C++ 2008 Express

I've downloaded cURLpp, libcurl and openSSL. I'm a complete beginner and I want to use cURL with my c++ program. Every doc I can find about getting started is written for Unix.
1
vote
0answers
135 views

How do i set cookies form http header “Set-Cookie: ” using curlpp

Hallo, how can i set this cookie using curlpp or libcurl when recieving response from server? I havent found anything, so do i have to handle it myselves? I dont want to set cookies to concrete http ...
1
vote
0answers
116 views

How do I retrieve the response cookies through curlpp?

how can I retrieve the response cookies from a curlpp request? I want to store the PHP session off of a HTTP GET request. This is my current code: void Grooveshark::Connection::processPHPCookie() { ...
1
vote
2answers
541 views

Making HTTP Requests in Qt

I'm new to Qt. I installed Qt for VS2008 and integrated with my VS2010. I just want to know how to make HTTP requests. I've read about QtNetwork but QtHttp is obselete. I also know about libcurl and ...
1
vote
1answer
210 views

How to use curlpp's InfoGetter?

I'm using curlpp in an application and need to get the URL I was redirected to. Apparently there are two ways: track the Location headers (ugly) or use curlpp::InfoGetter (the c++ counterpart of ...
1
vote
1answer
995 views

C++ - how to send a HTTP post request using Curlpp or libcurl

I would like to send an http post request in c++. It seems like libcurl (Curlpp) is the way to go. Now, here is a typical request that am sending http://abc.com:3456/handler1/start?<name-Value ...
1
vote
1answer
237 views

An error when compiling using curlpp

I tried to compile first simple example, and see compile error: undefined reference to `curlpp::Cleanup::Cleanup()' In linker options i wrote curl-config --libs, in command line $ curl-config --libs ...
0
votes
1answer
49 views

Converting from java to c++, what is the equivalent curl command for setRequestProperty

I'm trying to convert a Java application to C++, I am using cURL for my requests. Below is the java code; I'm wondering how to replicate the connection.setRequestProperty() method. connection = ...
0
votes
1answer
54 views

major issues with cURLpp and Eclipse

I am attempting to use cURLpp as an avenue for retrieving data from a weather website for a final project in my C++ class. I am using Eclipse as an IDE and MinGW as my compiler. All I want to be able ...
0
votes
2answers
152 views

POST data from curl++ does not send

I have been trying to post data from within curlpp to a web script, but it does not seem to work. On the PHP end, I simply run var_dump($_POST); to print everything received back. The $_POST global ...
0
votes
0answers
42 views

libcurlpp SslCtxFunction callback signature

I'm calling on the collective wisdom of Stackoverflow to get an answer to what I hope is a simple question. I'm using libcurlpp::Easy v0.7.3 and want to set the callback function ...
0
votes
1answer
255 views

how do I extract the http response when using libcurlpp?

Trying to use libcurlpp (a C++ wrapper to libcurl) to post a form and get the response. It all works, but I have no idea how to programmatically get access to the response from the curlpp::Easy ...