This the Hunchentoot default page. You're most likely seeing it because the server administrator hasn't set up a custom default page yet.
Hunchentoot is a web server written in Common Lisp. More info about Hunchentoot can be found at http://weitz.de/hunchentoot/.
Unable to load foreign library (LIBSSL).
Error opening shared object "libssl32.dll":
126.
[Condition of type CFFI:LOAD-FOREIGN-LIBRARY-ERROR]
0: [RETRY] Try loading the foreign library again.
1: [USE-VALUE] Use another library instead.
2: [RETRY] Retry performing #<ASDF:LOAD-OP NIL {A70BD69}> on #<ASDF:CL-SOURCE-FILE "reload" {A70BD89}>.
3: [ACCEPT] Continue, treating #<ASDF:LOAD-OP NIL {A70BD69}> on #<ASDF:CL-SOURCE-FILE "reload" {A70BD89}> as having been successful.
4: [ABORT] Return to SLIME's top level.
5: [CLOSE-CONNECTION] Close SLIME connection
6: [ABORT] Exit debugger, returning to top level.
]> 3
Undefined alien: "SSL_get_version"
[Condition of type UNDEFINED-ALIEN-ERROR]
0: [RETRY] Retry performing #<ASDF:LOAD-OP NIL {A70BD69}> on #<ASDF:CL-SOURCE-FILE "ffi" {A70BDA9}>.
1: [ACCEPT] Continue, treating #<ASDF:LOAD-OP NIL {A70BD69}> on #<ASDF:CL-SOURCE-FILE "ffi" {A70BDA9}> as having been successful.
2: [ABORT] Return to SLIME's top level.
3: [CLOSE-CONNECTION] Close SLIME connection
4: [ABORT] Exit debugger, returning to top level.
]> 1
Undefined alien: "SSL_read"
[Condition of type UNDEFINED-ALIEN-ERROR]
0: [RETRY] Retry performing #<ASDF:LOAD-OP NIL {A70BD69}> on #<ASDF:CL-SOURCE-FILE "streams" {A70BDD9}>.
1: [ACCEPT] Continue, treating #<ASDF:LOAD-OP NIL {A70BD69}> on #<ASDF:CL-SOURCE-FILE "streams" {A70BDD9}> as having been successful.
2: [ABORT] Return to SLIME's top level.
3: [CLOSE-CONNECTION] Close SLIME connection
4: [ABORT] Exit debugger, returning to top level.
Then when I do (asdf:oos 'asdf:load-op :hunchentoot-test) I get the following: ; loading system definition from ; C:\Program Files\eclipse\plugins\jasko.tim.lisp.libs_1.0.0\libs\hunchentoot-0.11.1\hunchentoot-test.asd ; into #<PACKAGE "ASDF0"> ; registering #<SYSTEM :HUNCHENTOOT-TEST {B6AD791}> as HUNCHENTOOT-TEST error opening #P"C:\\Users\\hmaseko\\Desktop\\eclipse\\plugins\\jasko.tim.lisp.libs_1.0.0\\libs\\hunchentoot-0.11.1\\test\\fz.jpg": No such file or directory [Condition of type SB-INT:SIMPLE-FILE-ERROR] 0: [RETRY] Retry performing #<ASDF:LOAD-OP NIL {B535AF1}> on #<ASDF:CL-SOURCE-FILE "test" {B6F3DE1}>. 1: [ACCEPT] Continue, treating #<ASDF:LOAD-OP NIL {B535AF1}> on #<ASDF:CL-SOURCE-FILE "test" {B6F3DE1}> as having been successful. 2: [ABORT] Return to SLIME's top level. 3: [CLOSE-CONNECTION] Close SLIME connection 4: [ABORT] Exit debugger, returning to top level. ]> 1 I am wondering why at some point the path is pointing to my desktop. True, I kept my Eclipse SDK there for a while before moving it to it's permanent location in c:/program files/ but why is the error occuring? There is something I am doing wrong. What is it? Regards, Harrison.