Yes hunchentoot-test does work, but if I try
(hunchentoot:define-easy-handler (say-yo :uri "/yo") (name) (setf (hunchentoot:content-type*) "text/plain") (setf (session-value 'test) 42) (format nil "Hey~@[ ~A~]!" name))
I see the error.
Jens
Am 16.07.11 18:37, schrieb Hans Hübner:
Hi Jens,
does hunchentoot-test work for you? Did you look at the source of hunchentoot-test to see whether it uses session-value the same way?
-Hans
On Sat, Jul 16, 2011 at 5:54 PM, Jens Teichinfo@jensteich.de wrote:
Trying to update a project from 0.15.6 to 1.1.1.
(setf (session-value 'x) 42) throws error 'called session with unpaired keyword'.
What am I missing?
Jens