Thanks so much, got rid of compilation error, it was due to eclipse adding the servlet-api in the build path.
So I am trying your minimal example now, but I do not understand what should code is expected in the servlet.
This is the code I am trying (as on the mailing lsit)
Thanks you very much for your help.
-
Anu
package com.example.minimal;
import javax.websocket.OnMessage;
import javax.websocket.Session;
import javax.websocket.server.ServerEndpoint;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.servlet.ServletContextHandler;
import org.eclipse.jetty.servlet.ServletHolder;
import org.eclipse.jetty.websocket.jsr356.server.ServerContainer;
import org.eclipse.jetty.websocket.jsr356.server.deploy.WebSocketServerContainerInitializer;
/**
* Example of setting up a javax.websocket server with Jetty embedded
*/
public class WebSocketJsrServer
{
/**
* A server socket endpoint
*/
@ServerEndpoint(value = "/echo")
public static class EchoJsrSocket
{
@OnMessage
public void onMessage(Session session, String message)
{
session.getAsyncRemote().sendText(message);
}
}
public static void main(String[] args) throws Exception
{
Server server = new Server(8080);
ServletContextHandler context = new ServletContextHandler(ServletContextHandler.SESSIONS);
context.setContextPath("/");
server.setHandler(context);
// Add a servlet to your context.
// It is required that you provide at least 1 servlet.
// Recommended that this servlet merely provide a
// "This is a websocket only server" style response to GET requests
context.addServlet(new ServletHolder(new HelloServlet()),"/*");
// Enable javax.websocket configuration for the context
ServerContainer wsContainer = WebSocketServerContainerInitializer.configureContext(context);
// Add your websockets to the container
wsContainer.addEndpoint(EchoJsrSocket.class);
server.start();
context.dumpStdErr(); // show the context details
server.join();
}
}
From: jetty-users-bounces@xxxxxxxxxxx [mailto:jetty-users-bounces@xxxxxxxxxxx]
On Behalf Of Joakim Erdfelt
Sent: Tuesday, July 29, 2014 10:37 AM
To: JETTY user mailing list
Subject: Re: [jetty-users] can someone please share jsr 356 example with _javascript_
The error ...
class "javax.servlet.http.HttpSessionIdListener"'s signer information does not match signer information of other classes in the same package
means you have 2 (or more) jars with javax.servlet.http.HttpSessionIdListener in it.
one of those jars is signed, the other ones either don't have jar signatures, or have different ones.
It is very uncommon to mix jetty embedded and jetty.xml in the same application.
While it is possible, you'll essentially end up with what jetty-start does, which is what the jetty-distribution is all about.
Expert advice, services and support from from the Jetty & CometD experts
On Tue, Jul 29, 2014 at 6:52 AM, Padki, Anuradha <anuradha.padki@xxxxxxxx> wrote:
Thanks so very much, I am trying some examples from internet (or from user-group) but I can’t even
get those compiled.
I am trying the minimal example you mentioned on the mailing list. My goal is to get
embedded jetty working (preferably with jetty.xml, I could get a hello servlet working with jetty.xml on 9.1; the trouble starts with websocketservlets, however right now I am only trying to get minimal websocket working)
BTW checked the jars, I have same jars as from your email.
Now for your minimal code I am totally stuck at
class "javax.servlet.http.HttpSessionIdListener"'s signer information does not match signer information of other classes in the same
package
I so very much appreciate your help, but I don’t want to bother you a lot, is there a very good example
for the 9.1 jsr 356 embedded jetty with any html/_javascript_ code?
I will like to try that.
Regards and thanks a bunch.
-
Anu
From:
jetty-users-bounces@xxxxxxxxxxx [mailto:jetty-users-bounces@xxxxxxxxxxx]
On Behalf Of Joakim Erdfelt
Sent: Tuesday, July 29, 2014 9:31 AM
To: JETTY user mailing list
Subject: Re: [jetty-users] can someone please share jsr 356 example with _javascript_
Jetty 9.1.4 has JSR-356 support.
$ ls -la jetty-distribution-9.1.4.v20140401/lib/websocket/
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?
* 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)
Expert advice, services and support from from the Jetty & CometD experts
On Tue, Jul 29, 2014 at 6:23 AM, Padki, Anuradha <anuradha.padki@xxxxxxxx> 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:
jetty-users-bounces@xxxxxxxxxxx [mailto:jetty-users-bounces@xxxxxxxxxxx]
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.
Expert advice, services and support from from the Jetty & CometD experts
On Tue, Jul 29, 2014 at 5:47 AM, Padki, Anuradha <anuradha.padki@xxxxxxxx> 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
jetty-users@xxxxxxxxxxx
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
jetty-users@xxxxxxxxxxx
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
jetty-users@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/jetty-users