Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] New DOC code bug?

From: jr::brainbyte::com at: 8-Oct-2000 18:02

I found this code in the new Rebol doc. The post method is useful for easily sending REBOL code and data to a web server that runs CGI. The following example illustrates this: data: [sell 10 shares of "ACME" at $123.45] read/custom http://www.example.com/cgi-bin/test.r reduce [ 'post mold data ] The mold function will produce the proper REBOL string to be sent to the server. --- but when I try it I get Invalid PORT spec of course I supply the correct URL and not the one in the example code