Hi all, I just installed Hunchentoot 1.0.0. When I do (hunchentoot:start (make-instance 'hunchentoot:acceptor :port 4242)) I get the following error:
There is no applicable method for the generic function
#<STANDARD-GENERIC-FUNCTION HUNCHENTOOT:START-LISTENING (0)>
when called with arguments
(#<HUNCHENTOOT:ACCEPTOR (host *, port 4242)>).
[Condition of type SIMPLE-ERROR]
0: [DEFAULT-DEBUGGER] Use default debugger.
1: [ABORT] Return to SLIME's top level.
2: [CLOSE-CONNECTION] Close SLIME connection
3: [ABORT] Exit debugger, returning to top level.
I don't understand this message and other similar errors that come up when I try to run the examples in the Hunchentoot documentation. I am a Lisp newbie running SBCL 1.0.6 via Cusp on Vista. Can you help?
Harrison.
On Fri, Feb 27, 2009 at 12:11, Harrison Maseko lispmr@gmail.com wrote:
I just installed Hunchentoot 1.0.0. When I do (hunchentoot:start (make-instance 'hunchentoot:acceptor :port 4242)) I get the following error:
There is no applicable method for the generic function
#<STANDARD-GENERIC-FUNCTION HUNCHENTOOT:START-LISTENING (0)> when called with arguments (#<HUNCHENTOOT:ACCEPTOR (host *, port 4242)>).
Did you have a previous version of Hunchentoot installed? If so, please make sure that all old .fasl files are removed and that the old version is not in your ASDF search path. If that still does not help, please email again.
I don't understand this message and other similar errors that come up when I try to run the examples in the Hunchentoot documentation. I am a Lisp newbie running SBCL 1.0.6 via Cusp on Vista. Can you help?
We have not done any testing on Windows yet. You are also running a very old SBCL version, which could be a cause for problems.
-Hans
On Fri, Feb 27, 2009 at 14:20, Hans Hübner hans.huebner@gmail.com wrote:
We have not done any testing on Windows yet. You are also running a very old SBCL version, which could be a cause for problems.
(Windows and SBCL to be more precise. Edi tests with Lispworks on Windows regularily).
-Hans
On Fri, Feb 27, 2009 at 2:20 PM, Hans Hübner hans.huebner@gmail.com wrote:
We have not done any testing on Windows yet.
I have, FWIW. But only with LispWorks.
On Fri, Feb 27, 2009 at 12:11 PM, Harrison Maseko lispmr@gmail.com wrote:
I just installed Hunchentoot 1.0.0. When I do (hunchentoot:start (make-instance 'hunchentoot:acceptor :port 4242)) I get the following error:
There is no applicable method for the generic function
#<STANDARD-GENERIC-FUNCTION HUNCHENTOOT:START-LISTENING (0)>
when called with arguments
(#<HUNCHENTOOT:ACCEPTOR (host *, port 4242)>).
[Condition of type SIMPLE-ERROR]
0: [DEFAULT-DEBUGGER] Use default debugger.
1: [ABORT] Return to SLIME's top level.
2: [CLOSE-CONNECTION] Close SLIME connection
3: [ABORT] Exit debugger, returning to top level.
I don't understand this message and other similar errors that come up when I try to run the examples in the Hunchentoot documentation. I am a Lisp newbie running SBCL 1.0.6 via Cusp on Vista. Can you help?
The short answer is that this should not happen... :)
My guess is the problem is SBCL on Windows which still is kind of experimental AFAIK. You should probably use another Lisp.
Sorry, I don't have a better idea.
Edi.
Would this error perhaps shade any light on what the real problem is?
ERROR MESSAGE (SBCL 1.0.6 via Cusp on Vista) ; compilation aborted because of fatal error: ; READ failure in COMPILE-FILE: ; READER-ERROR at 17279 (line 352, column 58) on #<SB-SYS:FD-STREAM for "file C:\Home\src\lisp\Cusp-0.9.390\New\eclipse\plugins\jasko.tim.lisp.lib s_1.1.1\libs\hunchentoot-1.0.0\acceptor.lisp" {AC04DA9}>: ; The symbol "*WILDCARD-HOST*" is not external in the USOCKET package. WARNING: COMPILE-FILE warned while performing #<COMPILE-OP NIL {B3D90B1}> on #<CL-SOURCE-FILE "acceptor" {A68DD79}>. erred while invoking #<COMPILE-OP NIL {B3D90B1}> on #<CL-SOURCE-FILE "acceptor" {A68DD79}> [Condition of type ASDF:COMPILE-FAILED] 0: [DEFAULT-DEBUGGER] Use default debugger. 1: [RETRY] Retry performing #<ASDF:COMPILE-OP NIL {B3D90B1}> on #<ASDF:CL-SOURCE-FILE "acceptor" {A68DD79}>. 2: [ACCEPT] Continue, treating #<ASDF:COMPILE-OP NIL {B3D90B1}> on #<ASDF:CL-SOURCE-FILE "acceptor" {A68DD79}> as having been successful. 3: [ABORT] Return to SLIME's top level. 4: [CLOSE-CONNECTION] Close SLIME connection 5: [ABORT] Exit debugger, returning to top level. ]> 1 ; compilation aborted because of fatal error: ; READ failure in COMPILE-FILE: ; READER-ERROR at 17279 (line 352, column 58) on #<SB-SYS:FD-STREAM for "file C:\Home\src\lisp\Cusp-0.9.390\New\eclipse\plugins\jasko.tim.lisp.lib s_1.1.1\libs\hunchentoot-1.0.0\acceptor.lisp" {B44A299}>: ; The symbol "*WILDCARD-HOST*" is not external in the USOCKET package. WARNING: COMPILE-FILE warned while performing #<COMPILE-OP NIL {B3D90B1}> on #<CL-SOURCE-FILE "acceptor" {A68DD79}>. erred while invoking #<COMPILE-OP NIL {B3D90B1}> on #<CL-SOURCE-FILE "acceptor" {A68DD79}> [Condition of type ASDF:COMPILE-FAILED] 0: [DEFAULT-DEBUGGER] Use default debugger. 1: [RETRY] Retry performing #<ASDF:COMPILE-OP NIL {B3D90B1}> on #<ASDF:CL-SOURCE-FILE "acceptor" {A68DD79}>. 2: [ACCEPT] Continue, treating #<ASDF:COMPILE-OP NIL {B3D90B1}> on #<ASDF:CL-SOURCE-FILE "acceptor" {A68DD79}> as having been successful. 3: [ABORT] Return to SLIME's top level. 4: [CLOSE-CONNECTION] Close SLIME connection 5: [ABORT] Exit debugger, returning to top level.
-----Original Message----- From: Edi Weitz [mailto:edi@agharta.de] Sent: Friday, February 27, 2009 3:52 PM To: General interest list for Hunchentoot and CL-WEBDAV Subject: Re: [hunchentoot-devel] hunchentoot errors
On Fri, Feb 27, 2009 at 12:11 PM, Harrison Maseko lispmr@gmail.com wrote:
I just installed Hunchentoot 1.0.0. When I do (hunchentoot:start (make-instance 'hunchentoot:acceptor :port 4242)) I get the following
error:
There is no applicable method for the generic function
#<STANDARD-GENERIC-FUNCTION HUNCHENTOOT:START-LISTENING (0)>
when called with arguments
(#<HUNCHENTOOT:ACCEPTOR (host *, port 4242)>).
[Condition of type SIMPLE-ERROR]
0: [DEFAULT-DEBUGGER] Use default debugger.
1: [ABORT] Return to SLIME's top level.
2: [CLOSE-CONNECTION] Close SLIME connection
3: [ABORT] Exit debugger, returning to top level.
I don't understand this message and other similar errors that come up when I try to run the examples in the Hunchentoot documentation. I am a Lisp newbie running SBCL 1.0.6 via Cusp on Vista. Can you help?
The short answer is that this should not happen... :)
My guess is the problem is SBCL on Windows which still is kind of experimental AFAIK. You should probably use another Lisp.
Sorry, I don't have a better idea.
Edi.
_______________________________________________ tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel Internal Virus Database is out of date. Checked by AVG. Version: 8.0.169 / Virus Database: 270.11.3/1967 - Release Date: 2/23/2009 7:17 AM
Hi,
I gave SBCL on windows a brief try and Hunchentoot did not work at all. Similar with CCL. At this current point in time, all I can say is that Hunchentoot does not support SBCL or CCL on Windows until someone really looks into it.
-Hans
On Sat, Feb 28, 2009 at 10:20, Harrison Maseko lispmr@gmail.com wrote:
Would this error perhaps shade any light on what the real problem is?
ERROR MESSAGE (SBCL 1.0.6 via Cusp on Vista) ; compilation aborted because of fatal error: ; READ failure in COMPILE-FILE: ; READER-ERROR at 17279 (line 352, column 58) on #<SB-SYS:FD-STREAM for "file C:\Home\src\lisp\Cusp-0.9.390\New\eclipse\plugins\jasko.tim.lisp.lib s_1.1.1\libs\hunchentoot-1.0.0\acceptor.lisp" {AC04DA9}>: ; The symbol "*WILDCARD-HOST*" is not external in the USOCKET package. WARNING: COMPILE-FILE warned while performing #<COMPILE-OP NIL {B3D90B1}> on #<CL-SOURCE-FILE "acceptor" {A68DD79}>. erred while invoking #<COMPILE-OP NIL {B3D90B1}> on #<CL-SOURCE-FILE "acceptor" {A68DD79}> [Condition of type ASDF:COMPILE-FAILED] 0: [DEFAULT-DEBUGGER] Use default debugger. 1: [RETRY] Retry performing #<ASDF:COMPILE-OP NIL {B3D90B1}> on #<ASDF:CL-SOURCE-FILE "acceptor" {A68DD79}>. 2: [ACCEPT] Continue, treating #<ASDF:COMPILE-OP NIL {B3D90B1}> on #<ASDF:CL-SOURCE-FILE "acceptor" {A68DD79}> as having been successful. 3: [ABORT] Return to SLIME's top level. 4: [CLOSE-CONNECTION] Close SLIME connection 5: [ABORT] Exit debugger, returning to top level. ]> 1 ; compilation aborted because of fatal error: ; READ failure in COMPILE-FILE: ; READER-ERROR at 17279 (line 352, column 58) on #<SB-SYS:FD-STREAM for "file C:\Home\src\lisp\Cusp-0.9.390\New\eclipse\plugins\jasko.tim.lisp.lib s_1.1.1\libs\hunchentoot-1.0.0\acceptor.lisp" {B44A299}>: ; The symbol "*WILDCARD-HOST*" is not external in the USOCKET package. WARNING: COMPILE-FILE warned while performing #<COMPILE-OP NIL {B3D90B1}> on #<CL-SOURCE-FILE "acceptor" {A68DD79}>. erred while invoking #<COMPILE-OP NIL {B3D90B1}> on #<CL-SOURCE-FILE "acceptor" {A68DD79}> [Condition of type ASDF:COMPILE-FAILED] 0: [DEFAULT-DEBUGGER] Use default debugger. 1: [RETRY] Retry performing #<ASDF:COMPILE-OP NIL {B3D90B1}> on #<ASDF:CL-SOURCE-FILE "acceptor" {A68DD79}>. 2: [ACCEPT] Continue, treating #<ASDF:COMPILE-OP NIL {B3D90B1}> on #<ASDF:CL-SOURCE-FILE "acceptor" {A68DD79}> as having been successful. 3: [ABORT] Return to SLIME's top level. 4: [CLOSE-CONNECTION] Close SLIME connection 5: [ABORT] Exit debugger, returning to top level.
-----Original Message----- From: Edi Weitz [mailto:edi@agharta.de] Sent: Friday, February 27, 2009 3:52 PM To: General interest list for Hunchentoot and CL-WEBDAV Subject: Re: [hunchentoot-devel] hunchentoot errors
On Fri, Feb 27, 2009 at 12:11 PM, Harrison Maseko lispmr@gmail.com wrote:
I just installed Hunchentoot 1.0.0. When I do (hunchentoot:start (make-instance 'hunchentoot:acceptor :port 4242)) I get the following
error:
There is no applicable method for the generic function
#<STANDARD-GENERIC-FUNCTION HUNCHENTOOT:START-LISTENING (0)>
when called with arguments
(#<HUNCHENTOOT:ACCEPTOR (host *, port 4242)>).
[Condition of type SIMPLE-ERROR]
0: [DEFAULT-DEBUGGER] Use default debugger.
1: [ABORT] Return to SLIME's top level.
2: [CLOSE-CONNECTION] Close SLIME connection
3: [ABORT] Exit debugger, returning to top level.
I don't understand this message and other similar errors that come up when I try to run the examples in the Hunchentoot documentation. I am a Lisp newbie running SBCL 1.0.6 via Cusp on Vista. Can you help?
The short answer is that this should not happen... :)
My guess is the problem is SBCL on Windows which still is kind of experimental AFAIK. You should probably use another Lisp.
Sorry, I don't have a better idea.
Edi.
tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel Internal Virus Database is out of date. Checked by AVG. Version: 8.0.169 / Virus Database: 270.11.3/1967 - Release Date: 2/23/2009 7:17 AM
tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel
Thanks so much Hans for your prompt input. Now my spirits must settle down and start looking for a way out. Once again thanks.
-----Original Message----- From: Hans Hübner [mailto:hans.huebner@gmail.com] Sent: Saturday, February 28, 2009 12:27 PM To: General interest list for Hunchentoot and CL-WEBDAV Subject: Re: [hunchentoot-devel] hunchentoot errors
Hi,
I gave SBCL on windows a brief try and Hunchentoot did not work at all. Similar with CCL. At this current point in time, all I can say is that Hunchentoot does not support SBCL or CCL on Windows until someone really looks into it.
-Hans
On Sat, Feb 28, 2009 at 10:20, Harrison Maseko lispmr@gmail.com wrote:
Would this error perhaps shade any light on what the real problem is?
ERROR MESSAGE (SBCL 1.0.6 via Cusp on Vista) ; compilation aborted because of fatal error: ; READ failure in COMPILE-FILE: ; READER-ERROR at 17279 (line 352, column 58) on #<SB-SYS:FD-STREAM for "file C:\Home\src\lisp\Cusp-0.9.390\New\eclipse\plugins\jasko.tim.li sp.lib s_1.1.1\libs\hunchentoot-1.0.0\acceptor.lisp" {AC04DA9}>: ; The symbol "*WILDCARD-HOST*" is not external in the USOCKET package. WARNING: COMPILE-FILE warned while performing #<COMPILE-OP NIL {B3D90B1}> on #<CL-SOURCE-FILE "acceptor" {A68DD79}>. erred while invoking #<COMPILE-OP NIL {B3D90B1}> on #<CL-SOURCE-FILE "acceptor" {A68DD79}> [Condition of type ASDF:COMPILE-FAILED] 0: [DEFAULT-DEBUGGER] Use default debugger. 1: [RETRY] Retry performing #<ASDF:COMPILE-OP NIL {B3D90B1}> on #<ASDF:CL-SOURCE-FILE "acceptor" {A68DD79}>. 2: [ACCEPT] Continue, treating #<ASDF:COMPILE-OP NIL {B3D90B1}> on #<ASDF:CL-SOURCE-FILE "acceptor" {A68DD79}> as having been successful. 3: [ABORT] Return to SLIME's top level. 4: [CLOSE-CONNECTION] Close SLIME connection 5: [ABORT] Exit debugger, returning to top level. ]> 1 ; compilation aborted because of fatal error: ; READ failure in COMPILE-FILE: ; READER-ERROR at 17279 (line 352, column 58) on #<SB-SYS:FD-STREAM for "file C:\Home\src\lisp\Cusp-0.9.390\New\eclipse\plugins\jasko.tim.li sp.lib s_1.1.1\libs\hunchentoot-1.0.0\acceptor.lisp" {B44A299}>: ; The symbol "*WILDCARD-HOST*" is not external in the USOCKET package. WARNING: COMPILE-FILE warned while performing #<COMPILE-OP NIL {B3D90B1}> on #<CL-SOURCE-FILE "acceptor" {A68DD79}>. erred while invoking #<COMPILE-OP NIL {B3D90B1}> on #<CL-SOURCE-FILE "acceptor" {A68DD79}> [Condition of type ASDF:COMPILE-FAILED] 0: [DEFAULT-DEBUGGER] Use default debugger. 1: [RETRY] Retry performing #<ASDF:COMPILE-OP NIL {B3D90B1}> on #<ASDF:CL-SOURCE-FILE "acceptor" {A68DD79}>. 2: [ACCEPT] Continue, treating #<ASDF:COMPILE-OP NIL {B3D90B1}> on #<ASDF:CL-SOURCE-FILE "acceptor" {A68DD79}> as having been successful. 3: [ABORT] Return to SLIME's top level. 4: [CLOSE-CONNECTION] Close SLIME connection 5: [ABORT] Exit debugger, returning to top level.
-----Original Message----- From: Edi Weitz [mailto:edi@agharta.de] Sent: Friday, February 27, 2009 3:52 PM To: General interest list for Hunchentoot and CL-WEBDAV Subject: Re: [hunchentoot-devel] hunchentoot errors
On Fri, Feb 27, 2009 at 12:11 PM, Harrison Maseko lispmr@gmail.com
wrote:
I just installed Hunchentoot 1.0.0. When I do (hunchentoot:start (make-instance 'hunchentoot:acceptor :port 4242)) I get the following
error:
There is no applicable method for the generic function
#<STANDARD-GENERIC-FUNCTION HUNCHENTOOT:START-LISTENING (0)>
when called with arguments
(#<HUNCHENTOOT:ACCEPTOR (host *, port 4242)>).
[Condition of type SIMPLE-ERROR]
0: [DEFAULT-DEBUGGER] Use default debugger.
1: [ABORT] Return to SLIME's top level.
2: [CLOSE-CONNECTION] Close SLIME connection
3: [ABORT] Exit debugger, returning to top level.
I don't understand this message and other similar errors that come up when I try to run the examples in the Hunchentoot documentation. I am a Lisp newbie running SBCL 1.0.6 via Cusp on Vista. Can you help?
The short answer is that this should not happen... :)
My guess is the problem is SBCL on Windows which still is kind of experimental AFAIK. You should probably use another Lisp.
Sorry, I don't have a better idea.
Edi.
tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel Internal Virus Database is out of date. Checked by AVG. Version: 8.0.169 / Virus Database: 270.11.3/1967 - Release Date: 2/23/2009 7:17 AM
tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel
_______________________________________________ tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel Internal Virus Database is out of date. Checked by AVG. Version: 8.0.169 / Virus Database: 270.11.3/1967 - Release Date: 2/23/2009 7:17 AM
On Sat, Feb 28, 2009 at 10:20 AM, Harrison Maseko lispmr@gmail.com wrote:
; The symbol "*WILDCARD-HOST*" is not external in the USOCKET package.
Are you using the latest version of usocket? If so, maybe it doesn't support SBCL on Windows correctly (or not at all)?
Otherwise, see Hans' reply - none of us uses one of the open source Lisps on Windows, so you're on your own. Help is of course always appreciated.
Edi.
Yes. I am using USOCKET 0.4.1. Hans' reply is nevertheless assuring; that I am not just doing things right. Thanks for your prompt response, though.
-----Original Message----- From: nhabedi@gmail.com [mailto:nhabedi@gmail.com] On Behalf Of Edi Weitz Sent: Saturday, February 28, 2009 5:11 PM To: Harrison Maseko Cc: General interest list for Hunchentoot and CL-WEBDAV Subject: Re: [hunchentoot-devel] hunchentoot errors
On Sat, Feb 28, 2009 at 10:20 AM, Harrison Maseko lispmr@gmail.com wrote:
; The symbol "*WILDCARD-HOST*" is not external in the USOCKET package.
Are you using the latest version of usocket? If so, maybe it doesn't support SBCL on Windows correctly (or not at all)?
Otherwise, see Hans' reply - none of us uses one of the open source Lisps on Windows, so you're on your own. Help is of course always appreciated.
Edi. Internal Virus Database is out of date. Checked by AVG. Version: 8.0.169 / Virus Database: 270.11.3/1967 - Release Date: 2/23/2009 7:17 AM