rexxcurl-users Mailing List for Rexx/CURL
Brought to you by:
rexx
You can subscribe to this list here.
2002 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
From: Mark H. <ma...@re...> - 2009-10-31 00:43:16
|
I am trying the rexx/curl with Regina3.4 under Windows Vista with no success. The testcurl.rexx demo programs displays these error messages: ******************************************************************************** We are running rexxcurl 1.4 16 Oct 2005 libcurl/7.19.6 OpenSSL/0.9.8k zlib/1.2.3 ******************************************************************************** Error getting source of http://rexxcurl.sourceforge.net cURL error: 1 - Protocol http not supported or disabled in libcurl 'CURLCLEANUP' is not recognized as an internal or external command, operable program or batch file. 'CURLDROPFUNCS' is not recognized as an internal or external command, operable program or batch file. Press ENTER key to exit... What Rexx interpreter are you using? Please rerun the test script with TRACE I at the top so I can see more of the details of what and where it is failing. I don't have access to Vista so this will make diagnosis harder. Cheers, Mark -- * Mark Hessling, ma...@re... http://www.rexx.org/ * Author of THE, a Free XEDIT/KEDIT editor, Rexx/SQL, Rexx/CURL, etc. * Maintainer of Regina Rexx interpreter and Rexx/Tk * Use Rexx? join the Rexx Language Association: http://www.rexxla.org/ |
From: Oscar R. <abu...@ya...> - 2009-10-27 21:40:08
|
I am trying the rexx/curl with Regina3.4 under Windows Vista with no success. The testcurl.rexx demo programs displays these error messages: ******************************************************************************** We are running rexxcurl 1.4 16 Oct 2005 libcurl/7.19.6 OpenSSL/0.9.8k zlib/1.2.3 ******************************************************************************** Error getting source of http://rexxcurl.sourceforge.net cURL error: 1 - Protocol http not supported or disabled in libcurl 'CURLCLEANUP' is not recognized as an internal or external command, operable program or batch file. 'CURLDROPFUNCS' is not recognized as an internal or external command, operable program or batch file. Press ENTER key to exit... I copied all the dll’s to the same folder where Regina resides with the same result. Please help! Thanks in advance for your attention. Oscar Rojas FYI cURL is running fine. Here is the (partial) log of the same command executed from the command prompt: D:\cURL>curl http://rexxcurl.sourceforge.net <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st rict.dtd"> <html> <head> <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Rexx/CURL</title> <link href="common/default.css" type="text/css" rel="stylesheet"> <link type="image/png" href="favicon.png" rel="icon"> <meta name="keys" content="rexx, object rexx, imc, regina, api, SAA, cURL"> </head> <body style="margin:0px;"> <table width="100%" border="0" cellspacing="0" cellpadding="0" summary=""> <colgroup width="130"></colgroup> <tr> <!-- menu column --> <td align="center" valign="top"> <a href="http://sourceforge.net/projects/rexxcurl"><img src="images/rx curl64.png" alt="rexxcurl at SourceForge"></a> <div class="version"> ________________________________ ________________________________ Oscar Rojas Costa Rica ____________________________________________________________________________________ ¡Obtén la mejor experiencia en la web! Descarga gratis el nuevo Internet Explorer 8. http://downloads.yahoo.com/ieak8/?l=e1 |
From: Ross P. <Ros...@Ca...> - 2003-11-13 19:56:40
|
The bug I described below a year or so ago still appears in RexxCURL. I've updated the patch for release 1.1, it's attached. In addition, it fixes a problem with "make dist". See the updated HISTORY file for details of the two fixes. Ross ---------- Forwarded Message ---------- Subject: Bug report: HTTPPOSTFIELDS appends, should reset Date: Thu, 3 Oct 2002 12:18:46 -0400 From: Ross Patterson <Ros...@Ca...> To: rex...@li... FYI, I've just opened a bug report at SourceForge involving the use of CurlSetOpt(handle, "HTTPPOSTFIELDS", stemname). Unlike all the other CurlSetOpt() calls, this one *appends* to any previously set value instead of replacing it. The only way to avoid this to call CurlCleanup(). The problem report (and a patch to implement the replace behavior) is at <https://sourceforge.net/tracker/index.php?func=detail&aid=618127&group_id=30502&atid=399216>. -- Ross A. Patterson CatchFIRE Systems, Inc. 5885 Trinity Parkway, Suite 220 Centreville, VA 20120 (703) 563-4164 ------------------------------------------------------- |
From: Dave W. <da...@wa...> - 2002-02-12 12:28:53
|
If I open a curl session, and do a POST, I can't seem to be able to get back to doing a GET afterwards. I tried this (after setting up url etc) /* do a post */ post.0 = 1 post.1 = 'this=that' call curlsetopt curl, 'HTTPPOST', 1 call curlsetopt curl, 'HTTPPOSTFIELDS', 'POST.' call curlperform curl /* then try to do a get - but it does a post */ call curlsetopt curl, 'HTTPPOST', 0 post.0 = 0 call curlsetopt curl, 'HTTPPOSTFIELDS', 'POST.' call curlperform curl Switching on verbose output identifies the 2nd request as a POST also. Setting the HTTPPOSTFIELDS to zero was an attempt to fix this, but they seem to have been remembered anyway, as this=that still gets sent on the 2nd request. Am I missing something here? Cheers, Dave |