The curlpp tag has no wiki summary.
0
votes
0answers
51 views
Include Curl in MFC project
I'm fairly new with curl. I need to use curl in c++ with the ssl support.
I compiled OpenSSL with nmake and then, and I compiled libcurl as a static library with SLL SUPPORT via the VS10 project. The ...
0
votes
0answers
24 views
cURLpp and a crash of perform()
I try to create a very simple interaction between a C++ program and a webserver. Basically, need to sent a username and password to the server and expect either "OK" or "ERROR" back.
However, I don't ...
1
vote
1answer
63 views
Linking curl in a project using CMake
I don't have experience with C++, and only need to make a small adjustment to a C++ application to do a HTTP request to authenticate a user.
Curlpp is an option, but when including the libraries I ...
0
votes
2answers
114 views
how can I get libcurl to callback BEFORE it sends some information on a post?
I'm uploading information to a server using a post call (using curlpp, but libcurl directly is fine too).
CURLOPT_PROGRESSFUNCTION callback gets called from time to time with reports on how much data ...
0
votes
0answers
55 views
Retrieve callback URL
I'm using cURLpp to send requests from a desktop client to a server, which typically responds with some json element. I can then parse that element for the information I need and display it to my ...
2
votes
1answer
144 views
Curlpp, incomplete data from request
I am using Curlpp to send requests to various webservices to send and receive data.
So far this has worked fine since i have only used it for sending/receiving JSON data.
Now i have a situation where ...
0
votes
1answer
200 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
226 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 ...
3
votes
1answer
1k 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
877 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 ...
4
votes
3answers
358 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 ...
1
vote
2answers
542 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
2answers
1k 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
410 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 ...
2
votes
0answers
496 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 ...
1
vote
1answer
1k 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.
0
votes
1answer
577 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 ...
2
votes
0answers
286 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 ...
2
votes
1answer
293 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 ...
3
votes
1answer
201 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
1k 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 ...
3
votes
2answers
1k 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 ...
1
vote
1answer
390 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 ...
2
votes
1answer
2k 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
410 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
...
3
votes
3answers
1k 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 ...
7
votes
3answers
2k 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 <curlpp/curlpp.hpp>
...