Jetty 9.1.4 has JSR-356 support.

$ ls -la jetty-distribution-9.1.4.v20140401/lib/websocket/
total 540
drwxrwxr-x.  2 joakim joakim   4096 Apr  7 09:51 .
drwxrwxr-x. 12 joakim joakim   4096 Apr  7 09:51 ..
-rw-rw-r--.  1 joakim joakim  36611 Apr  2 10:14
javax.websocket-api-1.0.jar   <!-- the official JSR-356 API Jar -->
-rw-rw-r--.  1 joakim joakim 156243 Apr  2 10:14
javax-websocket-client-impl-9.1.4.v20140401.jar   <!-- the javax.websocket
implementation by jetty -->
-rw-rw-r--.  1 joakim joakim  36802 Apr  2 10:14
javax-websocket-server-impl-9.1.4.v20140401.jar   <!-- the
javax.websocket.server implementation by jetty -->
-rw-rw-r--.  1 joakim joakim  43680 Apr  2 10:14
websocket-api-9.1.4.v20140401.jar
-rw-rw-r--.  1 joakim joakim  35188 Apr  2 10:14
websocket-client-9.1.4.v20140401.jar
-rw-rw-r--.  1 joakim joakim 170297 Apr  2 10:14
websocket-common-9.1.4.v20140401.jar
-rw-rw-r--.  1 joakim joakim  35774 Apr  2 10:14
websocket-server-9.1.4.v20140401.jar
-rw-rw-r--.  1 joakim joakim  17923 Apr  2 10:14
websocket-servlet-9.1.4.v20140401.jar

If it isn't working for you, can you give some details on your attempts?
Things like:
 * your ${jetty.base} configurations (if using the distribution)
 * your webapp context deployable xml (if you are using xml based deploys)
 * your server.dump() output (if using embedded mode)
 * your code on attempting to access JSR-356 (in your webapp)

--
Joakim Erdfelt <[email protected]>
webtide.com <http://www.webtide.com/> - intalio.com/jetty
Expert advice, services and support from from the Jetty & CometD experts
eclipse.org/jetty - cometd.org


On Tue, Jul 29, 2014 at 6:23 AM, Padki, Anuradha <[email protected]>
wrote:

>  Thanks for the response Joakim
>
> I am sorry I did not phrase it right: I got websocket  working on 8 (not
> jsr 356) and I am trying to get jsr 356 working on 9.1.4, so it will work
> only on 9.2 , is that correct?
>
> Then
>
>
>
> *From:* [email protected] [mailto:
> [email protected]] *On Behalf Of *Joakim Erdfelt
> *Sent:* Tuesday, July 29, 2014 9:21 AM
> *To:* JETTY user mailing list
> *Subject:* Re: [jetty-users] can someone please share jsr 356 example
> with javascript
>
>
>
> JSR356 is available on Jetty 9.2 and newer.
>
> It is not available on Jetty 8.
>
>
>   --
>
> Joakim Erdfelt <[email protected]>
>
> webtide.com
> <https://urldefense.proofpoint.com/v1/url?u=http://www.webtide.com/&k=wdHsQuqY0Mqq1fNjZGIYnA%3D%3D%0A&r=4KNgn7IIPPl%2FiXDqTbxNPRf1lg2QQE5WxGK6NVGDZ5E%3D%0A&m=T%2Fig6s7L%2Fmq8rsEH7iy0nGpRHQlYa9CsGqa%2B9dape2k%3D%0A&s=4060508628122a154e708f8f49fb9ff70ccd8c40f29d3875ec7941c7f7b3ad6d>
>  -
> intalio.com/jetty
> <https://urldefense.proofpoint.com/v1/url?u=http://intalio.com/jetty&k=wdHsQuqY0Mqq1fNjZGIYnA%3D%3D%0A&r=4KNgn7IIPPl%2FiXDqTbxNPRf1lg2QQE5WxGK6NVGDZ5E%3D%0A&m=T%2Fig6s7L%2Fmq8rsEH7iy0nGpRHQlYa9CsGqa%2B9dape2k%3D%0A&s=b9e50abaf30a1a5f6a225349c7147de6d580979ff6aaa71b737a2571b951755c>
>
> Expert advice, services and support from from the Jetty & CometD experts
>
> eclipse.org/jetty
> <https://urldefense.proofpoint.com/v1/url?u=http://eclipse.org/jetty/&k=wdHsQuqY0Mqq1fNjZGIYnA%3D%3D%0A&r=4KNgn7IIPPl%2FiXDqTbxNPRf1lg2QQE5WxGK6NVGDZ5E%3D%0A&m=T%2Fig6s7L%2Fmq8rsEH7iy0nGpRHQlYa9CsGqa%2B9dape2k%3D%0A&s=6faf792e7b0ba333b08fecb38c14b5147a96d4769bcd410900197074003e125b>
>  - cometd.org
> <https://urldefense.proofpoint.com/v1/url?u=http://cometd.org/&k=wdHsQuqY0Mqq1fNjZGIYnA%3D%3D%0A&r=4KNgn7IIPPl%2FiXDqTbxNPRf1lg2QQE5WxGK6NVGDZ5E%3D%0A&m=T%2Fig6s7L%2Fmq8rsEH7iy0nGpRHQlYa9CsGqa%2B9dape2k%3D%0A&s=854bc35a09e4cd5fad0b843542b81d5ca514416769014a4664ae900851cd6812>
>
>
>
> On Tue, Jul 29, 2014 at 5:47 AM, Padki, Anuradha <[email protected]>
> wrote:
>
> I am new to Jetty, I could get jetty 8 websocket working, but am
> struggling with getting jsr 356 working.
>
> I tried many example codes but no luck, can somebody please share a simple
> sample of code with jsr356 with javascript?
>
> Any help is greatly appreciated.
>
> -          Anu
>
>
> _______________________________________________
> jetty-users mailing list
> [email protected]
> To change your delivery options, retrieve your password, or unsubscribe
> from this list, visit
> https://dev.eclipse.org/mailman/listinfo/jetty-users
> <https://urldefense.proofpoint.com/v1/url?u=https://dev.eclipse.org/mailman/listinfo/jetty-users&k=wdHsQuqY0Mqq1fNjZGIYnA%3D%3D%0A&r=4KNgn7IIPPl%2FiXDqTbxNPRf1lg2QQE5WxGK6NVGDZ5E%3D%0A&m=T%2Fig6s7L%2Fmq8rsEH7iy0nGpRHQlYa9CsGqa%2B9dape2k%3D%0A&s=959fbeee67682ebcc60aae6d8080cdedf1f52323ebe2d40dadb92e7e537649b5>
>
>
>
> _______________________________________________
> jetty-users mailing list
> [email protected]
> To change your delivery options, retrieve your password, or unsubscribe
> from this list, visit
> https://dev.eclipse.org/mailman/listinfo/jetty-users
>
_______________________________________________
jetty-users mailing list
[email protected]
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://dev.eclipse.org/mailman/listinfo/jetty-users

Reply via email to