racket/collects/web-server/default-web-root/servlets/examples/README
Jay McCarthy bd370b3763 Servlet tests
svn: r6615
2007-06-12 23:52:13 +00:00

17 lines
617 B
Plaintext

This directory contains several examples of PLT-Scheme servlets.
hello.ss
The hello servlet demonstrates how a minimal servlet can provide
functionality similar to server-side includes.
count.ss
The count servlet shows how a servlet can maintain state between invocations.
The state is reset when the cache of loaded servlets is refreshed.
add.ss
The add servlet uses send/suspend to interact with the user multiple times.
quiz.ss english-measure-questions.ss
The quiz servlet demonstrates how to implement a web-based multiple choice
quiz. A big thank you to Don Felgar for providing this sample.