From: <mi...@ch...> - 2005-12-18 21:34:43
|
I would like to use Webactions with sbcl 0.9.7 for x86-64 (AMD64). I did what the tutorial said which comes with Webactions in the according directory. Two files: pageone.clp pagetwo.clp which link to each other, saved in /home/user/example/ The server gets loaded and then started with (start :port 8000), and it is running correctly (version 1.2.42). Now I do this: (webaction-project "example-project" :destination "/home/user/example/" :project-prefix "/tutexample/" :index "home" :map '(("home" "page1.clp") ("second" "page2.clp"))) When I head my browser to http://localhost:8000/tutexample I can see in slime: 3-aserve-worker: 12/17/05 - 10:03:12 - while processing command "GET /example/home HTTP/1.1" got error The value "." is not of type (SIMPLE-ARRAY BASE-CHAR (*)). If I do the same steps with Lispworks it runs without problems. So I am certain that I did not make a mistake with the paths, forgetting slashes, etc.. This error message gets printed in the file main.cl in the function http-worker-thread, ca. line 1293. I am not experienced enough to trace the error back to its source and eliminate it :( Maybe someone can help me in that issue? Regards, André |