0
votes
2answers
53 views
Can a cURL based HTTP request imitate a browser based request completely ?
Hello Experts,
This is a two part question.
Q1: Can cURL based request 100% imitate a browser based request?
Q2: If yes, what all options should be set. If not what extra does the browser do that …
0
votes
0answers
8 views
Create Bucket , upload files using libcurl in c++
Hi,
I want to know that how can i create a bucket on aws(amazon web service) and how can i upload xml file on my bucket ? if you provide me some sample code it helpful for me .
thanks,
-1
votes
2answers
32 views
PHP cURL multiple calls vs simplexml_load_file
If i am making multiple calls to an api on each page in a web app, is cURL right for me, or is using simplexml_load_file with the URL wrapper OK?
Will opening, making the call, and closing the cURL …
0
votes
1answer
51 views
Building libcurl library in c++, Noob Question
I wanna write a little c++ program using libcurl. It's for a school project so I need to be able to package everything in a zip file and email it to my instructor.
I've just downloaded the tar from …
1
vote
3answers
51 views
Cross platform c++ with libcurl
Hi,
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 …
0
votes
1answer
20 views
How to cache SSL client certificate password in client application using libcurl
We have a (multi-os) application which communicates with a https server using libcurl and uses SSL client certification. When the client certification is password protected, the application must ask …
0
votes
1answer
44 views
How can I add libCurl to a Borland C++ Builder 6 Project?
How can I add libCurl to a Borland C++ Builder 6 Project? I tried including its directory in the project's compiler and linker search paths, then I made a lib from the libcurl dll and I added it to …
2
votes
4answers
116 views
PHP Curl POST Problem Causing PHP to use 100% CPU
I'm trying to upload data with POST to my webserver but sometimes cURL just stalls and causes PHP to use 100% CPU indefinitely.
I'm using the code below.
$curl = curl_init();
curl_setopt($curl, …
0
votes
2answers
44 views
Automatic Web Form Submission (looking at Javascript, but other methods are welcome)
What is the most efficient way to do automatic form submission? I'm doing this for fairly legit purposes (well, the site concerned doesn't have an option to send mails to a large group of people, so …
6
votes
4answers
1k views
Persistent/keepalive HTTP with the PHP Curl library?
I'm using a simple PHP library to add documents to a SOLR index, via HTTP.
There are 3 servers involved, currently:
The PHP box running the indexing job
A database box holding the data being …
0
votes
1answer
117 views
CUrl PUT with xml data
Hi
I'm facing a problem with curl as I am unable to issue a PUT request with inline XML data, I'm not sure how its done but I hade a couple of goes on it with different techniques. First I tried …
2
votes
3answers
260 views
Cancel libcurl easy handle
Is there an easy way to cancel a curl_easy_perform from another thread?
0
votes
1answer
132 views
Simple telnet example in LIBCURL - C++
I need to fing simple TELNET example in LIBCURL (curl.haxx.se/libcurl) (C++)
I searched over this site, but I don't found any simple example.
I need only to connect to TELNET, authenticate, and send …
1
vote
3answers
41 views
Finding out where curl was redirected
I'm using curl to make php send an http request to some website somewhere and have set CURLOPT_FOLLOWLOCATION to 1 so that it follows redirects. How then, can I find out where it was eventually …
0
votes
1answer
97 views
Including libcurl in project
So I downloaded the zip file from the curl website. I copied the directory with all of the header files into my include directory. Including the curl.h works with no problems, however, when I go to …
