[plt-scheme] getting webserver URL arguments
On Tue, 2005-04-05 at 11:27, Stephen DeGabrielle wrote:
> For list-related administrative tasks:
> http://list.cs.brown.edu/mailman/listinfo/plt-scheme
>
> I made the change you suggested - but it's still choking with the;
> > Servlet didn't load. expand: unbound variable in module
> error (in the browser)
Ah -- you're not requiring the library that provides that procedure. If
you add
(require (lib "servlet.ss" "web-server"))
somewhere in the module it will work.
-jacob