Context
I just got http://blog.jayfields.com/2011/02/clojure-web-socket-introduction.html working.
I also have ring + compojure working.
Question:
I would like to use ring … somehow … with webbit is this possible?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Ring works with web servers via adapters. The most common case is that people want to use jetty, so Ring ships with a jetty adapter.
In order to use ring with webbit, you’d want to write an adapter for it. Unfortunately, there doesn’t seem to be any public webbit adapters already in existence, so you’ll likely have to roll your own.