<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general">
    <title>gmane.comp.web.curl.curlpp.general</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/579"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/578"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/577"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/576"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/575"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/574"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/573"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/572"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/571"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/570"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/569"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/568"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/567"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/566"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/565"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/564"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/563"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/562"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/561"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/560"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/579">
    <title>[curlpp:227] http error codes</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/579</link>
    <description>&lt;pre&gt;i want to download a file using http
the attached code works fine.

but the code is not usable when
-&amp;gt; the file is missing in the server
-&amp;gt; or if proper permission is not given to access the file
even if the file is missing or with no proper permission...the error code 
says *CURL_OK* ie *no error.*
the file still gets downloaded, and in it there is html page of apache 404 
error or 403 error

i googled for many times but could not come up with any solutions
anyone could could please help me with these queries
-&amp;gt; how to stop redirect?
-&amp;gt; how to first check the http status codes? and if its 200 then only 
download file or else display proper message to user?
-&amp;gt; what are the basics test i need to perform before and after downloading 
of file? (so that the file gets downloaded successfully)


could anyone please help me
with regards,
deepak

&lt;/pre&gt;</description>
    <dc:creator>Deepak Adhikari</dc:creator>
    <dc:date>2013-04-30T17:58:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/578">
    <title>Re: [curlpp:226] Using my code to set the url option?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/578</link>
    <description>&lt;pre&gt;You can put variable "url". Either you can put it from any command line or call from some other function or define some constant in header file.
For example: 

int querySend(CString csURL)
{

       int cucRetCode;
       
     curl_easy_init();
 
    curl_easy_setopt(cuhpCurlHandle,CURLOPT_URL,csURL) ;
 
     cucRetCode = curl_easy_perform(cuhpCurlHandle);
 
    return cucRetCode;
}
  ----- Original Message ----- 
  From: nvangogh 
  To: curlpp-/JYPxA39Uh5TLH3MbocFFw&amp;lt; at &amp;gt;public.gmane.org 
  Sent: Monday, March 18, 2013 1:04 AM
  Subject: [curlpp:225] Using my code to set the url option?


  Hello,
  In the examples the url option always seems to be hard coded into the programs. I am seeking to set the url option depending upon selections made by the user at the command line. This is probably easily done, but I am new to using libcurl and curlpp and cannot figure out how to do it. So for example:


  #include &amp;lt;iostream&amp;gt;
  #include &amp;lt;string&amp;gt;
  #include &amp;lt;curlpp/cURLpp.hpp&amp;gt;
  #include &amp;lt;curlpp/Easy.hpp&amp;gt;
  #include &amp;lt;c&lt;/pre&gt;</description>
    <dc:creator>ranjeet kumar</dc:creator>
    <dc:date>2013-03-18T05:50:24</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/577">
    <title>[curlpp:225] Using my code to set the url option?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/577</link>
    <description>&lt;pre&gt;Hello,
In the examples the url option always seems to be hard coded into the 
programs. I am seeking to set the url option depending upon selections made 
by the user at the command line. This is probably easily done, but I am new 
to using libcurl and curlpp and cannot figure out how to do it. So for 
example:

#include &amp;lt;iostream&amp;gt;
#include &amp;lt;string&amp;gt;
#include &amp;lt;curlpp/cURLpp.hpp&amp;gt;
#include &amp;lt;curlpp/Easy.hpp&amp;gt;
#include &amp;lt;curlpp/Options.hpp&amp;gt;

int main()
{
  // code selection of a url
  cURLpp::Cleanup mycleanup;
  int option;
  curlpp::options::Url myurl;
  std::cout &amp;lt;&amp;lt; "Input option '1' for uk or option '2' for us \n";
  std::cin &amp;gt;&amp;gt; option;
  switch(option)
    {
    case 1:
      std::cout &amp;lt;&amp;lt; "Option 1 selected...\n";
      myurl = "http://www.uk.co.uk";
      break;
    case 2:
      std::cout &amp;lt;&amp;lt; "Option 2 selected...\n";
      myurl = "http://www.us.com";
      break;
    }
  
  
  return 0;
}

This code does not compile but i am trying to achieve something similar to 
this with my code. 

As an alternative to h&lt;/pre&gt;</description>
    <dc:creator>nvangogh</dc:creator>
    <dc:date>2013-03-17T19:34:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/576">
    <title>[curlpp:224] curlinfo_primary_ip</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/576</link>
    <description>&lt;pre&gt;Hi. I'd like to know if there is any way to obtain this with curlpp. Thanks.

&lt;/pre&gt;</description>
    <dc:creator>Daniel Smith</dc:creator>
    <dc:date>2013-01-10T22:45:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/575">
    <title>[curlpp:223] Curl check before download and Multithreading Question</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/575</link>
    <description>&lt;pre&gt;Hello Curl Community,

i'm building a webcrawler, now i need to tune, my crawler, the crawler was 
build in php, but i have some problems.

Is this in Cpp possible:

e.g. I make a request to http://domain.com/4/dir/somepdf.pdf

When my crawler makes a request to that url, and the header returns, a for 
example application/pdf ,  than I want, that curl does not download the 
file (in one request). (I just want only text/html to download). In php i 
could do this in two requests like just receive the header, check, if ok 
than make a new request. I want todo this in* one request* check, stop or 
go.
The same applies to 404, 403, 503 HTTP errors i dont want fetch the body if 
the header returns a these errors.

Real Multi-threading, on PHP you dont have a real multi-threading, curl is 
so fast as your slowest request. Is this in Cpp possible to make a real 
multi threaded application?

As you can see im coming from PHP, does the cpp client has some other feat, 
which the php not has? which are worth to mention?&lt;/pre&gt;</description>
    <dc:creator>curlppnoob</dc:creator>
    <dc:date>2012-05-26T18:43:06</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/574">
    <title>[curlpp:222] Cancel Current Transfer</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/574</link>
    <description>&lt;pre&gt;Dear All,

I am using Curlpp tp fetch some Data using HTTP requests. Is there any
way to Cancel HTTP transfer using Curlpp. I used the progress function
to Cancel the current transfer by returning "1" instead of "0". But
sadly after canceling the transfer the whole program aborted. Moreover
I used Timeout and I faced the same problem. Is there any other method
that cancels the transfer without aborting the whole program

Best regards,
Khaled

&lt;/pre&gt;</description>
    <dc:creator>khaled zayed</dc:creator>
    <dc:date>2012-04-25T12:38:35</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/573">
    <title>[curlpp:221] ProgressFucntion</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/573</link>
    <description>&lt;pre&gt;I am using Curlpp to fetch some segments. How can I use the Progress
Function

&lt;/pre&gt;</description>
    <dc:creator>khaled zayed</dc:creator>
    <dc:date>2012-03-08T14:32:58</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/572">
    <title>[curlpp:220] Re: Trouble building cURLpp with SSL support</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/572</link>
    <description>&lt;pre&gt;Thanks!  You were right-on.  I made sure to set my paths up to use the
right libcurl libs, but forgot about the curl-configs  ( I probably
should hvae just opened cURLpp-config myself)  I just made a https
request so it looks like we're all good.



On Dec 4, 9:45 am, Jean-Philippe Barette-LaPierre &amp;lt;j...-V5R0HI2H36zQT0dZR+AlfA&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
wrote:

&lt;/pre&gt;</description>
    <dc:creator>sean</dc:creator>
    <dc:date>2011-12-04T23:06:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/571">
    <title>Re: [curlpp:219] Trouble building cURLpp with SSL support</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/571</link>
    <description>&lt;pre&gt;curlpp-config --features only calls curl-config. So, I wonder if you
got two curl-config on your system. please use dtruss to check which
curl-config it calls

On Wed, Nov 30, 2011 at 1:11 AM, sean &amp;lt;s.g.hatch-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Jean-Philippe Barette-LaPierre</dc:creator>
    <dc:date>2011-12-04T14:45:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/570">
    <title>[curlpp:218] Re: Trouble building cURLpp with SSL support</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/570</link>
    <description>&lt;pre&gt;Hi Jean-Philippe,

Thanks for taking a look...

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by configure, which was
generated by GNU Autoconf 2.63.  Invocation command line was

  $ ./configure --without-boost

## --------- ##
## Platform. ##
## --------- ##

hostname = Macintosh.local
uname -m = i386
uname -r = 9.8.0
uname -s = Darwin
uname -v = Darwin Kernel Version 9.8.0: Wed Jul 15 16:55:01 PDT 2009;
root:xnu-1228.15.4~1/RELEASE_I386

/usr/bin/uname -p = i386
/bin/uname -X     = unknown

/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = Mach kernel version:
 Darwin Kernel Version 9.8.0: Wed Jul 15 16:55:01 PDT 2009;
root:xnu-1228.15.4~1/RELEASE_I386
Kernel configured for up to 2 processors.
2 processors are physically available.
2 processors are logically available.
Processor type: i486 (Intel 80486)
Processors active: 0 1
Primary mem&lt;/pre&gt;</description>
    <dc:creator>sean</dc:creator>
    <dc:date>2011-12-04T00:52:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/569">
    <title>Re: [curlpp:217] Trouble building cURLpp with SSL support</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/569</link>
    <description>&lt;pre&gt;can you post your config logs?

On Wed, Nov 30, 2011 at 1:11 AM, sean &amp;lt;s.g.hatch-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Jean-Philippe Barette-LaPierre</dc:creator>
    <dc:date>2011-12-01T12:43:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/568">
    <title>[curlpp:216] Trouble building cURLpp with SSL support</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/568</link>
    <description>&lt;pre&gt;Hi!

I am pretty pumped up to get to work with cURLpp, but I am having
trouble building it with SSL support.  I am on Mac OS X.5.

So far, I have built openSSL, and then libcurl with that.  When I do a
curl--config --feature I get:

SSL
IPv6
libz
NTLM
NTLM_WB

So, I know libcurl has SSL support.  Next, for cURLpp, I do

./autogen.sh
./configure --without-boost
make
make install

The install goes okay, but when I do curlpp-config --feature I see
only libz.  I would like to see SSL there, to ensure I have SSL
support, right?  Here are some things I've tried so far:

-doing curl--config --libs and then including the output of this in
LDFLAGS prior to autogen'ing for cURLpp.
-pasting ssl's path, /usr/local/ssl , pretty much anywhere I can think
of (like CXXFLAGS, etc.).
-some other last resort moves, not proud of them.

Notably, I am sure that I am building cURL againt the libcurl libs I
just built. This might be useful in case anybody else goes down this
road -- Mac OS seems to have a few versions of these libs&lt;/pre&gt;</description>
    <dc:creator>sean</dc:creator>
    <dc:date>2011-11-30T06:11:27</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/567">
    <title>[curlpp:215] help with sftp</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/567</link>
    <description>&lt;pre&gt;Hi!! list, good morning

I having some problems to get a conexion with sftp , it told me this :
Maybe the library does not sopport the sftp or is disable .

Some idea about it ?

does anybody have example to get a conexion sftp  ?


thnks

&lt;/pre&gt;</description>
    <dc:creator>manuel antonio ochoa</dc:creator>
    <dc:date>2011-09-07T17:42:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/566">
    <title>[curlpp:214] help with sftp</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/566</link>
    <description>&lt;pre&gt;Hi!! list, good morning

I having some problems to get a conexion with sftp , it told me this :
Maybe the library does not sopport the sftp or is disable .

Some idea about it ?

does anybody have example to get a conexion sftp  ?


thnks

&lt;/pre&gt;</description>
    <dc:creator>manuel antonio ochoa</dc:creator>
    <dc:date>2011-09-07T16:10:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/565">
    <title>[curlpp:213] ayuda con sftp</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/565</link>
    <description>&lt;pre&gt;Que tal lista buenos dias , son nuevo en el uso de la libreria y
obejitvo es utlizarla para descarga de archivos via sftp,
hice un ejemplo
y me marca que la sftp esta desabilitado o no es soportado por la
libreria,
tiene alguna idea ?  o donde econtrar un ejemplo con sftp

saludos.

&lt;/pre&gt;</description>
    <dc:creator>manuel antonio ochoa</dc:creator>
    <dc:date>2011-09-07T16:06:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/564">
    <title>[curlpp:212] Include curlpp in Xcode 4</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/564</link>
    <description>&lt;pre&gt;Hi everyone,

I'm trying to include cURLpp to one of my Xcode project but I get
"file not found" exceptions

I've downloaded curlpp 0.7.3, un-archived it right next to my project
directory and added: "$SRCROOT/../curlpp-0.7.3/include" to the Header
Search Path in Build Settings, also making sure the the recursive
checkbox was selected. That is the only thing I've modified in the
settings.

Any idea why it can't find the header files?
Thanks in advance for your help.

&lt;/pre&gt;</description>
    <dc:creator>Bastien</dc:creator>
    <dc:date>2011-07-27T10:17:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/563">
    <title>Re: [curlpp:211] POSTing data does not seem to work?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/563</link>
    <description>&lt;pre&gt;Ah yes, that would do it! I've had that issue before as well. I'm glad you
figured it out, when I looked at your code it looked all there to me. I just
didn't have the time to dig deeper into the issue. Thank you for posting
back that you solved the issue.

-Zachary

On Tuesday, July 26, 2011, Jeff Warrren &amp;lt;jeff.warren-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:
"curlpp" group.
curlpp+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0&amp;lt; at &amp;gt;public.gmane.org
http://groups.google.com/group/curlpp?hl=en.

&lt;/pre&gt;</description>
    <dc:creator>Zach Mance</dc:creator>
    <dc:date>2011-07-26T14:34:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/562">
    <title>[curlpp:210] Re: POSTing data does not seem to work?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/562</link>
    <description>&lt;pre&gt;Fixed - the content type descriptor was wrong. Should have been:
application/x-www-form-urlencoded

&lt;/pre&gt;</description>
    <dc:creator>Jeff Warrren</dc:creator>
    <dc:date>2011-07-26T11:15:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/561">
    <title>[curlpp:209] Re: POSTing data does not seem to work?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/561</link>
    <description>&lt;pre&gt;Sure.

My C++ code is as follows:

std::stringstream out;
std::stringstream ss;
ss &amp;lt;&amp;lt; "127.0.0.1/online.php";

try
{
curlpp::Cleanup clean;
curlpp::Easy request;
curlpp::options::WriteStream ws(&amp;amp;out);
request.setOpt(ws);
request.setOpt&amp;lt;curlpp::options::Url&amp;gt;(ss.str());
request.setOpt(new curlpp::options::Verbose(true));

std::list&amp;lt;std::string&amp;gt; header;
header.push_back("Content-Type: application/octet-stream");
request.setOpt(new curlpp::options::HttpHeader(header));

std::string test = "abcd=abcd";

request.setOpt(new curlpp::options::PostFields(test));
request.setOpt(new curlpp::options::PostFieldSize(test.length()));

request.perform();
}
catch(curlpp::RuntimeError&amp;amp; e)
{
ss.str("");
ss &amp;lt;&amp;lt; "Error making request of type " &amp;lt;&amp;lt; op &amp;lt;&amp;lt; ": " &amp;lt;&amp;lt; e.what();
PrintError(ss.str());
return "";
}

std::cout &amp;lt;&amp;lt; out.str() &amp;lt;&amp;lt; std::endl;

return out.str();


And the web script end is just &amp;lt;? var_dump($_POST); ?&amp;gt; as mentioned
before. Command line curl has it print the sent data as ex&lt;/pre&gt;</description>
    <dc:creator>Jeff Warrren</dc:creator>
    <dc:date>2011-07-25T02:30:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/560">
    <title>[curlpp:208] Re: POSTing data does not seem to work?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/560</link>
    <description>&lt;pre&gt;I've been able to use POST things, I'll try to help you. Could you
post more of the code you are working with?

Thanks,
Zach

On Jul 22, 8:31 am, Jeff Warrren &amp;lt;jeff.war...-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Zach Mance</dc:creator>
    <dc:date>2011-07-22T18:31:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/559">
    <title>[curlpp:207] POSTing data does not seem to work?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.curl.curlpp.general/559</link>
    <description>&lt;pre&gt;I have been working off the example given at http://curlpp.org/index.php/examples/62-example-12,
along with a php script which will just print out whatever is posted
to it.

(i.e. &amp;lt;? var_dump($_POST) ?&amp;gt; )

No matter what I have tried, including variations on the example
above, the PHP script never seems to receive anything. Am I doing
something incorrectly, or is there possibly a bug in curlpp?

&lt;/pre&gt;</description>
    <dc:creator>Jeff Warrren</dc:creator>
    <dc:date>2011-07-22T13:31:00</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.web.curl.curlpp.general">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.web.curl.curlpp.general</link>
  </textinput>
</rdf:RDF>
