Trending Curl Discussions

Follow

Ask the Community


Ask any professional question and get answers from other specialists.

Stream language
Sreeyush Sudhakaran's image
Question added by Sreeyush Sudhakaran TECHNICAL ANALYST(SOFTWARE ENGINEER) NATIONAL BANK OF ABUDHABHI
9 years ago

How to use a curl lib in c++ to .net?‎

I have project using FTP download and upload using curl Lib in C++ how can I port that project using same curl Lib in C# .NET‎

Answers:
1
Followers:
Views:
391
Vote Count:
1
Answer should contain a minimum of 25 characters.
Khadijah Shtayat's image
Question added by Khadijah Shtayat Technical Lead Opensooq
9 years ago
Answers:
1
Followers:
Views:
804
Vote Count:
0
Answer should contain a minimum of 25 characters.
Atif Majid's image
Question added by Atif Majid Senior PHP Programer/Team Lead RedApple Apartments AB
9 years ago

How do you compare CURL and Socket programming in PHP? What are the pros and cons of both? And why do you prefer one over the other?‎

I was just wondering that we may be able to achieve the same thing using both of these methods i.e. CURL or Socket. Has anybody tried to compare these two on performance,‎ ... See More

Answers:
2
Followers:
Views:
2210
Vote Count:
0
Answer should contain a minimum of 25 characters.
Muhammad Majid Saleem's image
Question added by Muhammad Majid Saleem Senior PHP Developer / Project Manager SwaamTech
10 years ago

Is there a way to read a SSL/HTTPS page using cURL?‎

I am trying to read content from https://zipcodedownload.com/Documentation/WebService/index.html using their provided APIs. But I am unable to read content using cURL bec‎ ... See More

Answers:
3
Followers:
Views:
312
Vote Count:
0
Answer should contain a minimum of 25 characters.
Majid Hameed's image  
Answer added by  Majid Hameed, Senior Java Developer, Check24 Vergleichsportal GmbH
9 years ago

* Socket performs better as compared to Curl. * Usage wise Curl is better as compared to Socket. * If you want to connect to machines over internet on different non stand ... See More

Tahir Abbas's image  
Answer added by  Tahir Abbas, .NET and Web Developer, TAMA_tech
9 years ago

Sreeyush Sudhakaran you must visit the following it may solve your problem,   http://curl.haxx.se/libcurl/c/visual_studio.pdf

Muhammad Majid Saleem's image  
Answer added by  Muhammad Majid Saleem, Senior PHP Developer / Project Manager, SwaamTech
9 years ago

I believe, both have their own advantages and disadvantages over each other. But I would suggest to user cURL.   I would recommend, you are better off using cURL because: ... See More

Shahnawaz hamid's image  
Answer added by  Shahnawaz hamid, Technical Lead (Sr. Programmer), Sultan Qaboos University
9 years ago

Both are different. you can not compare with CRUL you can get the facility of progress response

Nouphal Muhammed's image  
Answer added by  Nouphal Muhammed, Senior Web Developer, Planet Green Solutions
10 years ago

Try this: $url = 'https://zipcodedownload.com/Documentation/WebService/index.html'; $ch = curl_init();     curl_setopt($ch, CURLOPT_URL, $url); // set url curl_ ... See More