[Resin-interest] WebSockets Chatroom example

2014-03-06 Thread Rick Mann
I'm trying to do the WebSockets example here: http://wiki4.caucho.com/WebSocket_API_Chat_Room_using_JSR_356 But it needs javax.ejb.Startup (among other things). My ant build script fails on this, because I don't seem to be including the right JAR. I tried to use the maven ant plugin

Re: [Resin-interest] WebSockets Chatroom example

2014-03-06 Thread Paul Cowan
On Mar 6, 2014, at 3:37 AM, Rick Mann rm...@latencyzero.com wrote: I'm trying to do the WebSockets example here: http://wiki4.caucho.com/WebSocket_API_Chat_Room_using_JSR_356 But it needs javax.ejb.Startup (among other things). My ant build script fails on this, because I don't

Re: [Resin-interest] WebSockets Chatroom example

2014-03-06 Thread Rick Mann
On Mar 6, 2014, at 09:47 , Paul Cowan co...@caucho.com wrote: For EJB you want: http://mirrors.ibiblio.org/maven2/javax/ejb/ejb-api/3.0/ Hmm, I still get [javac] /Users/rmann/.../UsageMapServer.java:9: error: cannot find symbol [javac] import javax.ejb.Startup; -- Rick

Re: [Resin-interest] WebSockets Chatroom example

2014-03-06 Thread Rick Mann
Awesome, thanks! On Mar 6, 2014, at 09:47 , Paul Cowan co...@caucho.com wrote: On Mar 6, 2014, at 3:37 AM, Rick Mann rm...@latencyzero.com wrote: I'm trying to do the WebSockets example here: http://wiki4.caucho.com/WebSocket_API_Chat_Room_using_JSR_356 But it needs