Im trying to get hunchentoot to run on windows vista. Everything compiles successfully and i downloaded opensll and installed dlls into the system directory. However, when i type the following into emacs
(hunchentoot:start (make-instance 'hunchentoot:acceptor :port 4242)) (hunchentoot:define-easy-handler (say-yo :uri "/yo") (name) (setf (hunchentoot:content-type*) "text/plain") (format nil "Hey~@[ ~A~]!" name))
and go to http://127.0.0.1:4242/yo, i see a blank page. In fact, i can go to /anything and still see a blank page, even though it should (?) produce an error since that page wasn't defined.
So what should i do to start debugging this? Thanks! ---- Msg sent via WebMail