Re: Windows users! Help us test upload performance tuning?

2018-08-04 Thread Ralph Mitchell
ard Alcock's reply in the > archives, but I have it in my mailbox. What gives? > Gmail dropped Ray's message in my Spam folder with this note: "This message has a from address in yahoo.com but has failed yahoo.com's required tests for au

Re: http post request with authentication

2016-05-25 Thread Ralph Mitchell
usgs.gov;); > curl_easy_setopt(curl,CURLOPT_USERPWD,"login:password"); > > curl_easy_setopt(curl,CURLOPT_POSTFIELDS,"typeAddress=WRS1=3$rowAddress=3"); > Is that really supposed to be "$rowAddress=3" instead of "=3" Ralph Mitchell -

Re: SMTP with TLS error handling

2015-06-04 Thread Ralph Mitchell
It may be deliberate behaviour by Office365, to avoid giving out information that may assist an attacker. Ralph Mitchell On Thu, Jun 4, 2015 at 11:26 AM, Jamie Gordon ja...@deslock.com wrote: Hi I have a problem with the correct error handling for SMTP errors when using libcurl and I'd

Re: WPAD proxy (was Re: Need Help Please)

2014-12-30 Thread Ralph Mitchell
the .pac file, you may be able to exec a script from your program to process it and return something usable. Dunno how you'd do that in Windows, though. Ralph Mitchell --- List admin: http://cool.haxx.se/list/listinfo/curl-library

Re: LibCurl C/C++ Authentification

2013-06-11 Thread Ralph Mitchell
you out. Ralph Mitchell --- List admin: http://cool.haxx.se/list/listinfo/curl-library Etiquette: http://curl.haxx.se/mail/etiquette.html

Re: Questions on wifi portal login

2013-02-22 Thread Ralph Mitchell
will not work. Ralph Mitchell --- List admin: http://cool.haxx.se/list/listinfo/curl-library Etiquette: http://curl.haxx.se/mail/etiquette.html

Re: http://curl.haxx.se/ca/cacert.pem

2013-02-07 Thread Ralph Mitchell
Thawte, in the Top Issues tab here: https://search.thawte.com/support/ssl-digital-certificates/index.html and Verisign: https://knowledge.verisign.com/support/ssl-certificates-support/index?page=contentid=AR657 I imagine the other Certificate Authorities have similar downloads. Ralph

Re: libcurl with client ssl certificate

2012-08-20 Thread Ralph Mitchell
is sitting in the directory, but is not appended to whichever file was read? Ralph Mitchell --- List admin: http://cool.haxx.se/list/listinfo/curl-library Etiquette: http://curl.haxx.se/mail/etiquette.html

Re: libcurl with client ssl certificate

2012-08-19 Thread Ralph Mitchell
* be looking for CA certs in the file designated by pCACertFile. Does libcurl automatically look in ca-certificates as well as any file you designate? Ralph Mitchell --- List admin: http://cool.haxx.se/list/listinfo/curl-library Etiquette

Re: libcurl with client ssl certificate

2012-08-19 Thread Ralph Mitchell
On Sun, Aug 19, 2012 at 1:57 PM, Daniel Stenberg dan...@haxx.se wrote: On Sun, 19 Aug 2012, Ralph Mitchell wrote: static const char *pCertFile = cert.pem; static const char *pCACertFile=cert.pem; This seems like a highly unlikely scenario. The same file, really? A self-signed cert

Re: libcurl with client ssl certificate

2012-08-18 Thread Ralph Mitchell
that signed your client certificate? You have a working command-line already, so you can use the --libcurl option to get the equivalent source file (with the exception of formpost stuff as mentioned in the man page): curl --libcurl myCurlSsl.c -w -E cert.pem https://some.site.com Ralph

Re: cert files

2011-10-17 Thread Ralph Mitchell
is located. e.g. curl-config --ca /opt/TWWfsw/curl715/share/ca-bundle.crt You should be able to cat your certificate pem file onto the end of the bundle. Ralph Mitchell --- List admin: http://cool.haxx.se/list/listinfo

Re: [PATCH] CURLOPT_CACERTSTORE

2011-05-13 Thread Ralph Mitchell
should not be allowed to tamper with the list of root CAs. This is the situation we are facing. OK, I have to ask this - could you build your specific list of allowed CA certs into the app and simply not go get the list from a possibly-tampered-with external file?? Ralph Mitchell

Re: how to filter redirections

2011-04-04 Thread Ralph Mitchell
separately, but on one occasion most of the above 6 redirect forms happened one after another from the same web server - that wasn't pretty... :) Ralph Mitchell --- List admin: http://cool.haxx.se/list/listinfo/curl-library Etiquette: http

Re: Calling JavaScript Functions using Curl

2010-09-22 Thread Ralph Mitchell
event in the above scenario. The problem you're going to run into is in evaluating this: document.forms['theForm'] document.forms is a construct created by the web browser while parsing the html. Curl doesn't do that, so you can't reference document.forms. Ralph Mitchell

Re: HELP: how can i do POST with setting URL to /

2010-07-29 Thread Ralph Mitchell
. Ralph Mitchell --- List admin: http://cool.haxx.se/list/listinfo/curl-library Etiquette: http://curl.haxx.se/mail/etiquette.html

Re: curling password protected website with hidden dynamic variable on the login page

2010-02-03 Thread Ralph Mitchell
-markuprevision=HEAD That'll give you the correct form elements and also the action url to post to. Ralph Mitchell --- List admin: http://cool.haxx.se/list/listinfo/curl-library Etiquette: http://curl.haxx.se/mail/etiquette.html

Re: curling password protected website with hidden dynamic variable on the login page

2010-02-03 Thread Ralph Mitchell
On Wed, Feb 3, 2010 at 9:57 PM, Ralph Mitchell ralphmitch...@gmail.comwrote: On Wed, Feb 3, 2010 at 2:10 PM, Maximilian Rausch maxrau...@gmail.comwrote: I need to curl data that is on a password protected site and I am first trying to get by the login page so that I can store the cookies

Re: curling password protected website with hidden dynamic variable on the login page

2010-02-03 Thread Ralph Mitchell
); curl_easy_setopt(handle, CURLOPT_POST, 1); though I haven't done a lot with libcurl, so I've probably left out some stuff. Ralph Mitchell --- List admin: http://cool.haxx.se/list/listinfo/curl-library Etiquette: http

Re: enableEventValidation=true

2010-01-16 Thread Ralph Mitchell
using the command-line tool or a browser, and did it work as expected? Ralph Mitchell --- List admin: http://cool.haxx.se/list/listinfo/curl-library Etiquette: http://curl.haxx.se/mail/etiquette.html

Re: libcurlnet 1.3 compatible with libcurl 7.19.6

2009-10-03 Thread Ralph Mitchell
! Just to get the silly questions out of the way - you did recompile your program after updating curl, right?? Ralph Mitchell --- List admin: http://cool.haxx.se/list/listinfo/curl-library Etiquette: http://curl.haxx.se/mail

Re: Question about cookies

2009-09-15 Thread Ralph Mitchell
On Sep 11, 2009, at 2:37 PM, Ralph Mitchell wrote: On Fri, Sep 11, 2009 at 1:18 PM, Jonathan Wallace jwall...@livetechnology.com wrote: Is it possible to get a list of cookies from the return header so that I can tokenize it and record them in my application. Currently I'm using

Re: UNSUBSCRIBE

2009-09-13 Thread Ralph Mitchell
/mailman/options/curl-library mailto:curl-library-requ...@cool.haxx.se?subject=unsubscribe And, btw, you might want to fix that typo in your Collaboration Studios email... Ralph Mitchell

Re: Question about cookies

2009-09-11 Thread Ralph Mitchell
the header and tokenize and I'm wondering if there is a more elegant and faster way to do this? How about CURLINFO_COOKIELIST?? That gets you a linked list of all cookies curl knows about. Ralph Mitchell

Re: How to install latest version of libcurl

2009-08-12 Thread Ralph Mitchell
release of curl before pushing it out into production. Ralph Mitchell

Re: File type to download

2009-06-22 Thread Ralph Mitchell
original message was dropped into my spam folder by Gmail. The reason given was this may not be from the person it appears to be from. Ralph Mitchell

Re: Error 407 with Proxy authentication

2009-04-29 Thread Ralph Mitchell
that password - the encoding is really easy to reverse... Ralph Mitchell

Re: About libcurl on Solaris 10

2009-04-22 Thread Ralph Mitchell
the latest source and compile it. A full installation of Solaris 10 should include GCC, probably in /usr/sfw/bin. Ralph Mitchell