Hi.

I am not able to set up a filter to work with my JAX-WS Endpoint when running 
Jetty Embedded.
Something like this do not work :

        Server server = new Server(8080);
        ServletContextHandler context = new 
ServletContextHandler(ServletContextHandler.SESSIONS);
        context.setContextPath("/");
        server.setHandler(context);
        context.addServlet(new ServletHolder(new HelloServlet()),"/*");         
        FilterHolder f = new FilterHolder(SOAPServletFilter.class);
        context.addFilter(f, "/*", null);       
       Endpoint utl_endpoint = Endpoint.create(new MyWebService());
       utl_endpoint.publish(" 
http://localhost:8080/no/MyWebServiceSoapHttpPort";, new MyWebService());        
                          
        server.start();
        server.join();

Please help me
_______________________________________________
jetty-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/jetty-users

Reply via email to