Camel 2.16 vs Jetty9 vs camel-websocket

2015-11-10 Thread fabrizio.spataro
Hello, i would use camel 2.16 + jetty9 + camel-websocket but this component depends from jetty8. How can i do? i am trying force to use jetty9 from maven without success. -- View this message in context:

Re: Camel 2.16 vs Jetty9 vs camel-websocket

2015-11-10 Thread Daniel Kulp
I looked at this briefly when I updated a bunch of things to be able to use Jetty9. In CXF, we were able to use a bit of reflection to allow the CXF web socket transport to support both Jetty 8 and Jetty 9. However, camel-websocket uses a LOT LOT more of the web socket API’s than CXF does

Re: Camel 2.16 vs Jetty9 vs camel-websocket

2015-11-10 Thread Aki Yoshida
jetty8 and jetty9 have a different websocket handler interface, so you can't just replace the jetty version unless the component includes two specific implementations that can be used depending on the available version. if you want to choose your own serverlet container (e.g., jetty9, tomcat8,

Re: Camel 2.16 vs Jetty9 vs camel-websocket

2015-11-10 Thread Claus Ibsen
Yeah I think there is a ticket about upgrading camel-websocket to jetty 9. We love help so anyone who has the time is welcome to help with this. It should IMHO be jetty9 by default as 8 is EOL. On Tue, Nov 10, 2015 at 6:11 PM, Aki Yoshida wrote: > jetty8 and jetty9 have a