Re: [racket] bindings without request

2010-11-11 Thread Neil Van Dyke
Are you sure you need to use CGI? The Racket Web server is much better supported and documented. -- http://www.neilvandyke.org/ _ For list-related administrative tasks: http://lists.racket-lang.org/listinfo/users

Re: [racket] bindings without request

2010-11-11 Thread scouic
i've totally forgot this one, and it works perfectly ! with just a number, it's very simple ... (if (empty? (get-bindings/get)) "empty parameters" (car (extract-bindings "number" (get-bindings/get big thanks ! -mw _ For list-related ad

Re: [racket] bindings without request

2010-11-11 Thread Jay McCarthy
Most Web servers communicate to CGI programs through environment variables and stdin. I believe net/cgi: http://docs.racket-lang.org/net/cgi.html can handle parsing the bindings from stdin, but I've never used it so I can't give you any help. Jay On Thu, Nov 11, 2010 at 5:01 PM, scouic wrote:

Re: [racket] bindings without request

2010-11-11 Thread scouic
I'm looking since two hours a feint to circumvent this problem, but I have no solution ... How can I do to get the parameters from one page to another without bindings & cie ? thanks for your help, -mw 2010/11/11 Jay McCarthy > The Web Server's request parsing and binding handling cannot be use

Re: [racket] bindings without request

2010-11-11 Thread Jay McCarthy
The Web Server's request parsing and binding handling cannot be used in CGI apps as far as I know. Jay On Thu, Nov 11, 2010 at 3:03 PM, scouic wrote: > Hi all, > I've misunderstood the bindings from the webserver. > > I have a cgi program wich displays a webpage with an input field named > numbe

[racket] bindings without request

2010-11-11 Thread scouic
Hi all, I've misunderstood the bindings from the webserver. I have a cgi program wich displays a webpage with an input field named number at 127.0.0.1/cgi-bin/input and wich calls (via a form) /cgi-bin/extract-input. For example, after sending, the url could be 127.0.0.1/cgi-bin/extract-input?num