artful-newlisp
artful-newlisp copied to clipboard
xmlrpc-server.lsp SocketServer:serve
Hello,
In this definition:
(define (run-server (port 8080) (path "/RPC2")) (setf server-path path) (setf SocketServer:handler handler) (println "Starting server") (SocketServer:serve port))
Isn't it supposed to be (SocketServer:SocketServer port)?
I'm trying to get it going and I would not be surprised if that is the case. I also cannot get the handler to fire upon receiving a request. I already check through WireShark and the transaction is going through but the handler is not handling it. I'll be playing with it and see how far I go.
But yest, that statement (SocketServer:serve port) is not right.