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
On Sat, Dec 19, 2009 at 6:56 PM, Seth seth@tewebs.com wrote:
So what should i do to start debugging this?
Some ideas:
1. Check if anything is actually listening on port 4242.
2. Set *break-on-signals* to t and then send a request from your browser and see what happens. Or if anything happens at all.
Cheers, Edi.