Thank you. I loaded ucw/src/backend/httpd.lisp after <br>
<br>
(ucw:create-server :backend '(:httpd    :host "<a href="http://127.0.0.1">127.0.0.1</a>" :port 8080)<br>
                        
;; '(:mod-lisp :host "<a href="http://127.0.0.1">127.0.0.1</a>" :port 3001)<br>
                        
;; '(:araneida :host "<a href="http://127.0.0.1">127.0.0.1</a>" :port 8080)<br>
                        
;; '(:aserve   :host "<a href="http://127.0.0.1">127.0.0.1</a>" :port 8080)<br>
                  
:applications (list it.bese.ucw-user::*example-application*<br>
                                      
ucw::*admin-application*)<br>
                  
:inspect-components nil<br>
                  
:log-root-directory (make-pathname :name nil :type nil<br>
                                                     
:directory (append (pathname-directory *load-truename*)<br>
                                                                        
(list :up "logs"))<br>
                                                     
:defaults *load-truename*)<br>
                   :log-level +info+<br>
                   :start-p t)<br>
<br>
and everything worked.<br>
<br>
Alec<br>
<br><br><div><span class="gmail_quote">On 3/31/06, <b class="gmail_sendername">Marco Baringer</b> <<a href="mailto:mb@bese.it">mb@bese.it</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
"Alec Segal" <<a href="mailto:alecsegal@gmail.com">alecsegal@gmail.com</a>> writes:<br><br>> Just  have ucw set up and trying to get any response from it. No luck with any<br>> backend.<br>> I use the latest sources from darcs ucw_dev.
<br>><br>> SBCL 0.9.8<br>><br>> ucw.log (lisp was restarted every time):<br>><br>> (+INFO+ 3352746404 IT.BESE.UCW::UCW-LOGGER "Starting up standard server #<br>> <STANDARD-SERVER MULTITHREAD-HTTPD-BACKEND 2 {B2F6149}>.")
<br>> (+INFO+ 3352751202 IT.BESE.UCW::UCW-LOGGER "Starting up standard server #<br>> <STANDARD-SERVER ARANEIDA-BACKEND 2 {B342C09}>.")<br>> (+INFO+ 3352752177 IT.BESE.UCW::UCW-LOGGER "Starting up standard server #
<br>> <STANDARD-SERVER MULTITHREAD-MOD-LISP-BACKEND 2 {B3D1249}>.")<br>><br>> As soon as I try to connect with through http, I get an error in the<br>> ucw-backend.log:<br>><br>> (+ERROR+ 3352743688 
IT.BESE.UCW::UCW.BACKEND "Error in worker loop: #<br>> <UNDEFINED-FUNCTION READ-REQUEST {BDD2D29}>.")<br>> (+ERROR+ 3352743688 IT.BESE.UCW::UCW.BACKEND "Worker thread #<br>> <IT.BESE.UCW::HTTPD-WORKER
 {BD3D6B9}> reported #<UNDEFINED-FUNCTION<br>> READ-REQUEST {BDD2D29}>.")<br>><br>> (+INFO+ 3352751202 IT.BESE.UCW::UCW.BACKEND "Starting up ARANEIDA backend #<br>> <ARANEIDA-BACKEND {C1C37C1}> on 
<a href="http://127.0.0.1:8080/">http://127.0.0.1:8080/</a>")<br>> (+ERROR+ 3352754733 IT.BESE.UCW::UCW.BACKEND "Error in worker loop: #<br>> <UNDEFINED-FUNCTION READ-REQUEST {A746601}>.")<br>> (+ERROR+ 3352755066 
IT.BESE.UCW::UCW.BACKEND "Error in worker loop: #<br>> <UNDEFINED-FUNCTION READ-REQUEST {C67BF11}>.")<br><br>this is strange, the read-reuest function is defined in<br>ucw/src/backend/common.lisp. if you load 
common.lisp from the repl<br>(before sending a reuest to ucw) things sohuld work perfectly. you're<br>not the first person to run into this problem but i am, unfgortunetly,<br>unable to reproduce it. :(<br><br>> For some reason httpd-worker-loop/handle in 
multithread-httpd.lisp does not<br>> have read-request and make-response functions defined (though they are in the<br>> httpd.lisp). I am less clear what is going on with other backends.<br>> IMHO ucwctl needs to be fixed (the value for :backend must be a list):
<br>> ...<br>>                  
$EVAL "(ucw:create-server :backend '(:$BACKEND<br>>                                              :host
\"$HOST\"<br>>                                              :port
$PORT)<br><br>luca's recent (yestrday) patch to ucwctl et al. fixs this.<br><br>--<br>-Marco<br>Ring the bells that still can ring.<br>Forget the perfect offering.<br>There is a crack in everything.<br>That's how the light gets in.
<br>        -Leonard Cohen<br>_______________________________________________<br>bese-devel mailing list<br><a href="mailto:bese-devel@common-lisp.net">bese-devel@common-lisp.net</a><br><a href="http://common-lisp.net/cgi-bin/mailman/listinfo/bese-devel">
http://common-lisp.net/cgi-bin/mailman/listinfo/bese-devel</a><br></blockquote></div><br>