<?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://blog.gmane.org/gmane.comp.web.curl.curlpp.general">
    <title>gmane.comp.web.curl.curlpp.general</title>
    <link>http://blog.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://comments.gmane.org/gmane.comp.web.curl.curlpp.general/579"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/577"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/576"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/575"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/574"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/573"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/568"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/567"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/566"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/565"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/564"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/559"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/558"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/555"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/553"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/551"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/550"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/549"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/548"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/547"/>
      </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://comments.gmane.org/gmane.comp.web.curl.curlpp.general/579">
    <title>[curlpp:227] http error codes</title>
    <link>http://comments.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://comments.gmane.org/gmane.comp.web.curl.curlpp.general/577">
    <title>[curlpp:225] Using my code to set the url option?</title>
    <link>http://comments.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://comments.gmane.org/gmane.comp.web.curl.curlpp.general/576">
    <title>[curlpp:224] curlinfo_primary_ip</title>
    <link>http://comments.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://comments.gmane.org/gmane.comp.web.curl.curlpp.general/575">
    <title>[curlpp:223] Curl check before download and Multithreading Question</title>
    <link>http://comments.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://comments.gmane.org/gmane.comp.web.curl.curlpp.general/574">
    <title>[curlpp:222] Cancel Current Transfer</title>
    <link>http://comments.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://comments.gmane.org/gmane.comp.web.curl.curlpp.general/573">
    <title>[curlpp:221] ProgressFucntion</title>
    <link>http://comments.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://comments.gmane.org/gmane.comp.web.curl.curlpp.general/568">
    <title>[curlpp:216] Trouble building cURLpp with SSL support</title>
    <link>http://comments.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://comments.gmane.org/gmane.comp.web.curl.curlpp.general/567">
    <title>[curlpp:215] help with sftp</title>
    <link>http://comments.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://comments.gmane.org/gmane.comp.web.curl.curlpp.general/566">
    <title>[curlpp:214] help with sftp</title>
    <link>http://comments.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://comments.gmane.org/gmane.comp.web.curl.curlpp.general/565">
    <title>[curlpp:213] ayuda con sftp</title>
    <link>http://comments.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://comments.gmane.org/gmane.comp.web.curl.curlpp.general/564">
    <title>[curlpp:212] Include curlpp in Xcode 4</title>
    <link>http://comments.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://comments.gmane.org/gmane.comp.web.curl.curlpp.general/559">
    <title>[curlpp:207] POSTing data does not seem to work?</title>
    <link>http://comments.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>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/558">
    <title>[curlpp:206] curlpp ssl callback function</title>
    <link>http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/558</link>
    <description>&lt;pre&gt;Hi All,

I am trying to write a curlpp ssl callback function on the client side
to do a custom verification of the server side certificate.
Here's a snippet.

m_sMyRequest.setOpt&amp;lt;cURLpp::Options::SslVerifyPeer&amp;gt;(true);
m_sMyRequest.setOpt&amp;lt;cURLpp::Options::SslVerifyHost&amp;gt;(2);
m_sMyRequest.setOpt&amp;lt;cURLpp::Options::SslCtxFunction&amp;gt;(sslctxfun);

What should the signature of the sslctxfun() callback function.

I came across sample C ssl callback function listed under libcurl
examples:
static CURLcode sslctxfun(CURL * curl, void * sslctx, void * parm);

But the same callback signature doesn't seem to work for curlpp. The
curlpp documentation lacks a proper C++ ssl example.

Any help is appreciated.

Thanks.

Aditya

&lt;/pre&gt;</description>
    <dc:creator>princeofporsche</dc:creator>
    <dc:date>2011-07-15T15:50:55</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/555">
    <title>[curlpp:203] to get the response received</title>
    <link>http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/555</link>
    <description>&lt;pre&gt;Hi,
I am using curlpp in my project. I have gone through the examples given on
the.
Now I am taking the reference of example 14.
*My Requirement: to save the data received from the remote url and use it
for further purpose.*
Problem is I am not getting where the received data is stored in the CURLMsg
structure:
curlpp::Multi::Msgs msgs = requests.info();
    for(curlpp::Multi::Msgs::iterator pos &amp;lt;http://www.php.net/pos&amp;gt; =
msgs.begin();
  pos &amp;lt;http://www.php.net/pos&amp;gt; != msgs.end &amp;lt;http://www.php.net/end&amp;gt;();
  pos &amp;lt;http://www.php.net/pos&amp;gt;++) {
      if(pos-&amp;gt;second.msg == CURLMSG_DONE) {

  /* Find out which handle this message is about */
  if(pos-&amp;gt;first == &amp;amp;request1) {
    printf &amp;lt;http://www.php.net/printf&amp;gt;("First request completed with status
%d\n", pos-&amp;gt;second.code);
  }
  else if(pos-&amp;gt;first == &amp;amp;request2) {
    printf &amp;lt;http://www.php.net/printf&amp;gt;("Second request completed with status
%d\n", pos-&amp;gt;second.code);
  }
      }

&lt;/pre&gt;</description>
    <dc:creator>Rajbir Kaur</dc:creator>
    <dc:date>2011-06-17T09:24:56</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/553">
    <title>[curlpp:201] how to get the response?</title>
    <link>http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/553</link>
    <description>&lt;pre&gt;I've got a curlpp::Easy object with all the necessary options to post
some XML to a HTTPS url.  When I enable the verbose option I can see
the response go to STDOUT, so I know it is working.

But...how do I get access to that response programmatically?  The
curlpp::Easy object doesn't seem to provide the response, so I'm
thinking I'm missing something really simple.

I would have thought curlpp::Easy::perform() would return an object,
but it returns void.  Anyone?

Stéphane Charette

&lt;/pre&gt;</description>
    <dc:creator>Stéphane Charette</dc:creator>
    <dc:date>2011-02-15T19:56:36</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/551">
    <title>[curlpp:0] API documentation missing for culpp</title>
    <link>http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/551</link>
    <description>&lt;pre&gt;When you click on the API it seems to do a recursive open of the about
page.  Can someone please fix this link?
Thanks
w0den

&lt;/pre&gt;</description>
    <dc:creator>w0den</dc:creator>
    <dc:date>2011-01-05T16:17:54</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/550">
    <title>[curlpp:198] install curlpp on windows xp + visual c++ 2008 (vc9)</title>
    <link>http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/550</link>
    <description>&lt;pre&gt;hello curlpp group
- - - - - - - - - - - - - -

I downloaded the .gz zip and extracted the files into F:\curlpp-0.7.3

then i opened it in vc9 and the build failed.

I added at Configuration Properties ----&amp;gt; c/c++ ----&amp;gt; Additional
include Directory

F:\curl-7.21.2
F:\curl-7.21.2\include

and this is what i got:

= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
= = = = = = = = = = = = = =
1&amp;gt;------ Build started: Project: curlpp, Configuration: DebugDynamic
Win32 ------
1&amp;gt;Compiling...
1&amp;gt;cl : Command line warning D9035 : option 'Wp64' has been deprecated
and will be removed in a future release
1&amp;gt;cURLpp.cpp
1&amp;gt;Easy.cpp
1&amp;gt;Exception.cpp
1&amp;gt;Form.cpp
1&amp;gt;Info.cpp
1&amp;gt;Infos.cpp
1&amp;gt;c1xx : fatal error C1083: Cannot open source file: '.\src\curlpp
\Infos.cpp': No such file or directory
1&amp;gt;Multi.cpp
1&amp;gt;Option.cpp
1&amp;gt;c1xx : fatal error C1083: Cannot open source file: '.\src\curlpp
\Option.cpp': No such file or directory
1&amp;gt;OptionBase.cpp
1&amp;gt;Options.cpp
1&amp;gt;CurlHandle.cpp
1&amp;gt;OptionList.cpp
1&amp;gt;OptionSetter.cpp
1&amp;gt;SList.&lt;/pre&gt;</description>
    <dc:creator>meirab</dc:creator>
    <dc:date>2010-11-20T13:39:47</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/549">
    <title>[curlpp:197] how to install curlpp on win xp + visual studio 2008 (vc9)</title>
    <link>http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/549</link>
    <description>&lt;pre&gt;hello

i need to know how to install curlpp on win xp + visual studio 2008
(vc9)

into which directories i have to extract "curlpp" ?

is curlpp still in development?

&lt;/pre&gt;</description>
    <dc:creator>meirab</dc:creator>
    <dc:date>2010-11-18T11:46:30</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/548">
    <title>[curlpp:196] Build curlCpp universal on osx 10.5</title>
    <link>http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/548</link>
    <description>&lt;pre&gt;Hi,

I would really like to use curlcpp on osx 10.5 but I can't really make
it work. I can build the library but it does not seem to be the
correct format since if I try to use it in a xcode project, where the
target settings are put to 10.5sdk, GCC 4.2 and 32-bit universal, I
get the following warning, and alot of errors related to the curlcpp
code:

ld: warning: in .../libcurlpp.dylib, file was built for unsupported
file format which is not the architecture being linked (i386)


ld: warning: in .../libutilspp.dylib, file was built for unsupported
file format which is not the architecture being linked (i386)

I tried configuring the build like this: ./configure --prefix=/Users/
moka/Documents/xcode/curlcpp --host=i386-apple-darwin10.5.0 --
build=i386-apple-darwin10.5.0

but I am pretty sure I somehow need to build a fat lib. 32-bit would
be great, 32/64-bit universal would be the best, is that possible? I
am using the last stable release from the website.

Thanks alot,

Matthias



&lt;/pre&gt;</description>
    <dc:creator>info-fzvRn/Xc0wUdwXzzRB9H2Q&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-11-12T14:40:49</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/547">
    <title>[curlpp:195] Need help logging to site using CURL</title>
    <link>http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/547</link>
    <description>&lt;pre&gt;0 down vote favorite


Hi,

I have some problems logging to a site using CURL. I think my problem
is related to cookie file.

I use cookiejar when I'm logging in to collect the information and
then I use cookiefile to retrieve the information.

The problem is that from some reason the SMIDENTITY is added to the
GET request from the browser and my CURL GET request does not contain
such thing.

How do I get the SMIDENTITY value? Do I need to include the __UT*
stuff?

Here is what was going on from the brower side:

   GET https://direct.orange.co.il/selfservice/customer/bill4u HTTP/
1.1
Host: direct.orange.co.il
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:
1.9.2.12) Gecko/20101026 Firefox/3.6.12
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/
*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.orange.co.il/he-il/support/InnerHelpAssistence_lobby/
Cookie&lt;/pre&gt;</description>
    <dc:creator>embedded</dc:creator>
    <dc:date>2010-11-04T07:48:38</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/546">
    <title>[curlpp:194] definition of dllimport function not allowed</title>
    <link>http://comments.gmane.org/gmane.comp.web.curl.curlpp.general/546</link>
    <description>&lt;pre&gt;hi,
this is naresh,
im working on vs 2008,
actually, im creating th lib file for Curlpp(with the downloaded
header fles and sorce files),
and included curlpp and curl paths also....,
bt when im build this program ,its showing following errors,
please help me.........as soon as possible....
thank you....








1&amp;gt;------ Build started: Project: CUrlPPLib, Configuration: Debug Win32
------
1&amp;gt;Compiling...
1&amp;gt;Easy.cpp
1&amp;gt;e:\curlpp\curlpp-0.7.3\include\curlpp\exception.hpp(49) : warning
C4275: non dll-interface class 'std::runtime_error' used as base for
dll-interface class 'curlpp::RuntimeError'
1&amp;gt;        c:\program files\microsoft visual studio 9.0\vc\include
\stdexcept(148) : see declaration of 'std::runtime_error'
1&amp;gt;        e:\curlpp\curlpp-0.7.3\include\curlpp\exception.hpp(48) :
see declaration of 'curlpp::RuntimeError'
1&amp;gt;e:\curlpp\curlpp-0.7.3\include\curlpp\exception.hpp(70) : warning
C4275: non dll-interface class 'std::logic_error' used as base for dll-
interface class 'curlpp::LogicError'
1&amp;gt;        c:\pr&lt;/pre&gt;</description>
    <dc:creator>naresh mandadapu</dc:creator>
    <dc:date>2010-10-21T06:07:40</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>
