luminus

doesntmeananything 2019-07-26T18:53:39.027200Z

Hi! I'm new to clojure and I'm trying to create a websocket server/client to send and receive text messages. However I'm getting compilation errors when requiring websocket-routes at main handler with reitit ring router: Wrong number of args (0) passed to: clojure.lang.PersistentVector. Do you guys see anything wrong with this code that might cause this?

romain 2019-07-29T11:53:11.032200Z

Didn't you miss the websocket callback? http://www.luminusweb.net/docs/websockets.html

doesntmeananything 2019-07-31T10:48:38.036700Z

Thanks, guys, but strangely enough the issue was in my faulty Java installation. After reinstalling it the program compiled correctly. Appreciate the tips