racket/collects/web-server/default-web-root/servlets/examples
Jay McCarthy aa2a889a18 Removing send/suspend/callback
svn: r6628
2007-06-13 16:11:48 +00:00
..
add-ssd.ss Servlet tests 2007-06-12 23:52:13 +00:00
add-v2.ss Servlet tests 2007-06-12 23:52:13 +00:00
add.ss Removing unit servlets 2007-04-30 17:51:11 +00:00
adjust.ss adjust-timeout 2007-06-12 23:59:19 +00:00
clear.ss Servlet tests 2007-06-12 23:52:13 +00:00
count.ss Removing unit servlets 2007-04-30 17:51:11 +00:00
cut.ss Servlet tests 2007-06-12 23:52:13 +00:00
dir.ss Removing unit servlets 2007-04-30 17:51:11 +00:00
english-measure-questions.ss Adding collects, with all the right properties (except eoln-style). 2005-05-27 18:56:37 +00:00
hello.ss Removing unit servlets 2007-04-30 17:51:11 +00:00
quiz.ss Removing unit servlets 2007-04-30 17:51:11 +00:00
README Servlet tests 2007-06-12 23:52:13 +00:00

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.