Re: websockets w/ clojure

2011-03-05 Thread Sean Allen
- Forwarded message -- > From: Sean Allen > Date: Dec 24 2010, 11:58 pm > Subject: websockets w/ clojure > To: Clojure > > > Jay, > > Do you have any publicly released code I could take a look at? > I've only found a couple of jetty/clojure/websocket example

Fwd: websockets w/ clojure

2011-03-04 Thread Jay Fields
I finally got around to writing this: http://blog.jayfields.com/2011/02/clojure-web-socket-introduction.html Cheers, Jay -- Forwarded message -- From: Sean Allen Date: Dec 24 2010, 11:58 pm Subject: websockets w/ clojure To: Clojure Jay, Do you have any publicly released code

Re: websockets w/ clojure

2010-12-29 Thread Nuno Marques
I'm not sure if people are aware or not but websockets have been dropped from firefox and opera and they expect other browsers to follow. If you follow the links you can read the thread on the ietf mailing list where the paper aut

Re: websockets w/ clojure

2010-12-29 Thread Stuart Sierra
Netty. Excellent library, great documentation, built-in websocket support. http://www.jboss.org/netty Example use from my work-in-progress, Cljque: https://github.com/stuartsierra/cljque/blob/master/modules/cljque-netty/src/main/clojure/cljque/netty/util.clj -Stuart Sierra clojure.com -- You

Re: websockets w/ clojure

2010-12-26 Thread Jay Fields
I don't have any publicly available jetty/clojure/websocket code. I'll see if I can throw something together tomorrow. Cheers, Jay On Dec 24, 2010, at 11:58 PM, Sean Allen wrote: > Jay, > > Do you have any publicly released code I could take a look at? > I've only found a couple of jetty/cloju

Re: websockets w/ clojure

2010-12-24 Thread Sean Allen
Jay, Do you have any publicly released code I could take a look at? I've only found a couple of jetty/clojure/websocket examples and would love to have more I could study. -Sean- On Fri, Dec 24, 2010 at 7:53 PM, Jay Fields wrote: > I've written a few Clojure websocket apps and used Jetty. Thin

Re: websockets w/ clojure

2010-12-24 Thread Jay Fields
I've written a few Clojure websocket apps and used Jetty. Things worked out fine and there wasn't much code at all to integrate. I'd recommend it. Sent from my iPhone On Dec 24, 2010, at 11:58 AM, Sean Allen wrote: > We did a prototype application using websockets for work using node.js as th

Re: websockets w/ clojure

2010-12-24 Thread Zach Tellman
If you decide to try Aleph and have any questions, I'm available via Github or on the mailing list at http://groups.google.com/group/aleph-lib. Zach On Dec 24, 10:55 am, paul santa clara wrote: > I have had a lot of success with Aleph.  Just remember to clone the git repo > as things move quickl

Re: websockets w/ clojure

2010-12-24 Thread paul santa clara
I have had a lot of success with Aleph. Just remember to clone the git repo as things move quickly and the clojars version is often out of date. Also, I would recommend taking the time to read over lamina wiki's as Aleph utilizes their channel abstractions: https://github.com/ztellman/lamina/wiki

websockets w/ clojure

2010-12-24 Thread Sean Allen
We did a prototype application using websockets for work using node.js as the server. Websocket client connects, sending some basic info... said info is used to repeatedly get new data from a database that is pushed down as it arrives in the db to the client which displays. There will be more than