when using PHP and sending POST requests, I do it like this:

 $ch = curl_init(POSTURL);
 curl_setopt($ch, CURLOPT_POST      ,1);
 curl_setopt($ch, CURLOPT_POSTFIELDS    , 'whatever');
 curl_setopt($ch, CURLOPT_FOLLOWLOCATION  ,1); 
 curl_setopt($ch, CURLOPT_RETURNTRANSFER  ,1);
 $Rec_Data = curl_exec($ch);

Now I want to use CURL in C#. I found "libcurl", but I don't quite know how to do it. I found some code snippets on the internet, but they don't really help.

So how could I translate that PHP code to C#?

Thanks a lot.

link|improve this question

1  
As @jacko says below, why aren't you using WebClient? What makes you need libcurl? – Greg B Mar 22 '11 at 12:06
feedback

2 Answers

up vote 0 down vote accepted

Here is a sample of how to use LibCurlNet

using System;
using SeasideResearch.LibCurlNet;

namespace Sample
{
    internal class Program
    {
        private static void Main(string[] args)
        {
            Curl.GlobalInit((int)CURLinitFlag.CURL_GLOBAL_ALL);

            Easy easy = new Easy();
            Easy.WriteFunction wf = MyWriteFunction;
            easy.SetOpt(CURLoption.CURLOPT_URL, "http://google.com/index.html");
            easy.SetOpt(CURLoption.CURLOPT_WRITEFUNCTION, wf);
            easy.Perform();
            easy.Cleanup();
            Console.WriteLine("Press any key...");
            Console.ReadKey();
        }

        private static int MyWriteFunction(byte[] buf, int size, int nmemb, Object extraData)
        {
            foreach (byte b in buf)
                Console.Write((char)b);

            return buf.Length;
        }
    }
}

For more examples just search stackoverflow for libcurl. There are plenty of code snippets roaming here under the [libcurl] tag. Hope this helps.

link|improve this answer
Ok, that seems to work fine. But there's a little problem: CURLOPT_RETURNTRANSFER doesn't exist. So I can send the request, but I don't get the "result" of the request :/ – Forlan07 Mar 22 '11 at 11:03
While I was looking at examples I noticed Easy.WriteFunction class that seems to be registering a callback function. I think that's what you need to get the result. Easy.WriteFunction wf = new Easy.WriteFunction(OnWriteData); easy.SetOpt(CURLoption.CURLOPT_WRITEFUNCTION, wf); – Maverik Mar 22 '11 at 11:06
I got that too, but where is the result? I tried something like CURLcode cCode = easy.Perform();, but there's nothing interesting in cCode. Where else could the result be? (And thanks for your help, by the way) – Forlan07 Mar 22 '11 at 11:12
Head scratching moment indeed! Guess I should download LibCurl and do a sample code :) -- Checking. Hope i can crack this in 30 minutes. Need to get back to office work after that. – Maverik Mar 22 '11 at 11:28
Ok I've run the libcurl code above and I can see the response returned from google's webserver on console (through the callback function). If this method is not working, then please post your code implementation to see what is going on. – Maverik Mar 22 '11 at 12:00
feedback

Why can't you use WebClient, WebRequest or HttpWebRequest? They are more than adequate for HTTP calls (including all the restful verbs).

link|improve this answer
I'd imagine its probably to do with the fact that he is coming from PHP world and feels more comfortable working with the component that he is used to :) – Maverik Mar 22 '11 at 12:16
I understand, but conversely I wouldn't recommend someone moving to the PHP world using a managed .NET DLL when there are built-in PHP libraries to handle this. Learn the framework you're using. – jacko Mar 22 '11 at 12:29
Agreed, but that's another discussion. I was inclined to answer the same initially but that wouldn't have answered OP's question. – Maverik Mar 22 '11 at 12:35
The correct answer is the correct answer, whether its what the OP was looking for or not... :) – jacko Mar 22 '11 at 12:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.