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

[REBOL] Re: TCP question

From: robert:muench:robertmuench at: 19-Mar-2004 16:31

On Thu, 18 Mar 2004 10:16:22 +0100, Maarten Koopmans <[maarten--vrijheid--net]> wrote:
> Step 1: try it on different webservers. > Step 2: Run REBOL standalone in CGI mode with data redirected to the > standard input > Step 3: mail this list again ;-)
Hi, well there is a very easy solution: read/custom http://localhost/cgi-bin/proxy.exe reduce ['post join upload-data mold compress read/binary %backdrop.png] That's it. This forms a nice string, posts it to the proxy CGI, which forwards it to my server listening process where I can handle it. This is a total generic interface now. Adding compressed and encrypted communication between a client and a server process is now very easy :-)) Robert