Re: [racket] Racket web-server support for HTTP 1.1

2013-09-17 Thread Jay McCarthy
If you were to have asked me a few months ago, I would have said it is fully compliant, but I recently learned about the "Expect: 100-continue" header, which I don't think I follow the spec on dealing with from the server side. I don't know of any other parts that it is not compliant with, but I'm

Re: [racket] Racket Web Server

2011-12-12 Thread jordan
On Sun, Dec 11, 2011 at 10:38:02PM -0600, Gerry Weaver wrote: > However, if you could rough out an outline of the things your trying to > capture, I would be happy to help where I can. A list of the top ten or twenty issues you encountered while getting racket/scheme to work for you, and optionall

Re: [racket] Racket Web Server

2011-12-12 Thread Jordan Schatz
https://github.com/shofetim/Racket-Riak Its very much still a work-in-progress. You can store, update, retrieve, get server status, get/set bucket properties, and map reduce. I need to update it for some changes in riak 1.0, add support for Luwak, and handle multipart responses. I also want to loo

Re: [racket] Racket Web Server

2011-12-12 Thread nicolas.o...@gmail.com
> > PS You also mentioned sedna. I'm guessing you might also be frustrated > with relation databases? I am also tired of writing ORMs and am using the > move to Racket as a good chance to move to different ways of storing > data, I've found that Riak http://wiki.basho.com/ works well, and its the >

Re: [racket] Racket Web Server

2011-12-12 Thread Jay McCarthy
s things when learning any new > language. It's a moment that will never come again. It seems I will > inevitably reach a point where I am no longer able to evaluate things like > this objectively. > > > Thanks, > Gerry > > -Original Message- > > F

Re: [racket] Racket Web Server

2011-12-12 Thread Gerry Weaver
s a moment that will never come again. It seems I will inevitably reach a point where I am no longer able to evaluate things like this objectively.    Thanks, Gerry -Original Message-  > From: "Neil Van Dyke" > To: "Gerry Weaver" > Cc: users@rac

Re: [racket] Racket Web Server

2011-12-12 Thread Neil Van Dyke
Gerry Weaver wrote at 12/12/2011 02:29 AM: What exactly are the benefits of a continuation based design? Does this paper address your questions? Krishnamurthi, Hopkins, McCarthy, Graunke, Pettyjohn, Felleisen, "Implementation and Use of the PLT Scheme Web Server", Journal of Higher-Order and S

Re: [racket] Racket Web Server

2011-12-11 Thread Gerry Weaver
> Cc: users@racket-lang.org > Date: 12/12/11 00:03 > Subject: Re: [racket] Racket Web Server > > Jordan Schatz wrote at 12/11/2011 10:15 PM: > > On Sun, Dec 11, 2011 at 04:25:46PM -0600, Gerry Weaver wrote: > >     > >> I am new to Racket and Lisp/Scheme in g

Re: [racket] Racket Web Server

2011-12-11 Thread Neil Van Dyke
Jordan Schatz wrote at 12/11/2011 10:15 PM: On Sun, Dec 11, 2011 at 04:25:46PM -0600, Gerry Weaver wrote: I am new to Racket and Lisp/Scheme in general. I am trying to write a simple rest web service in Racket, but I'm not making much progress. It's doable with the Racket Web Server. Part

Re: [racket] Racket Web Server

2011-12-11 Thread Gerry Weaver
"Gerry Weaver" > Cc: users@racket-lang.org > Date: 12/11/11 21:15 > Subject: Re: [racket] Racket Web Server > > On Sun, Dec 11, 2011 at 04:25:46PM -0600, Gerry Weaver wrote: > > I am new to Racket and Lisp/Scheme in general. I am trying to write a > >

Re: [racket] Racket Web Server

2011-12-11 Thread Jay McCarthy
I try to incorporate all questions I get into the manual in some way. If you send me your "missing manual", I can include its content in the real manual :) Jay On Sun, Dec 11, 2011 at 8:15 PM, Jordan Schatz wrote: > On Sun, Dec 11, 2011 at 04:25:46PM -0600, Gerry Weaver wrote: > > I am new to R

Re: [racket] Racket Web Server

2011-12-11 Thread Jordan Schatz
On Sun, Dec 11, 2011 at 04:25:46PM -0600, Gerry Weaver wrote: > I am new to Racket and Lisp/Scheme in general. I am trying to write a > simple rest web service in Racket, but I'm not making much > progress. Unfortunately, I don't find the Racket docs to be very > helpful. I guess my brain just isn'

Re: [racket] Racket Web Server

2011-12-11 Thread pablo
Hello, On Sun, Dec 11, 2011 at 11:25 PM, Gerry Weaver wrote: > Hello All, > > I am new to Racket and Lisp/Scheme in general. I am trying to write a simple > rest web service in Racket, but I'm not making much progress. Unfortunately, > I don't find the Racket docs to be very helpful. I guess my b

Re: [racket] Racket Web Server

2011-12-11 Thread Danny Yoo
> I am new to Racket and Lisp/Scheme in general. I am trying to write a simple > rest web service in Racket, but I'm not making much progress. Unfortunately, > I don't find the Racket docs to be very helpful. I guess my brain just isn't > wired right ;-) Asking questions on the mailing list woul

Re: [racket] Racket Web Server: using passwords and basic auth

2011-11-23 Thread Jay McCarthy
Hi, Take a look at http://docs.racket-lang.org/web-server/http.html#(part._basic-auth) for a basic example of using Basic Auth. If you don't want to define your own password file format, then you can use the helpers in http://docs.racket-lang.org/web-server-internal/dispatch-passwords.html to

Re: [racket] Racket Web Server

2011-09-06 Thread Jay McCarthy
The documentation you are reading: http://web.mit.edu/drracket_v501/share/racket/doc/continue/index.html is for version 5.0.1, but you are running 5.1.3. If you look at the documentation for the version you are using: http://docs.racket-lang.org/continue/index.html You'll see the example progr