Adding the following method to the java config worked liked a charm:

        @Bean
        public ServletRegistrationBean camelWsServletRegistrationBean() {
                ServletRegistrationBean registration = new 
ServletRegistrationBean(
                                new CamelWebSocketServlet(), "/*");
                registration.setName("CamelWsServlet");
                return registration;
        }

Thanks for all helpful information!



--
View this message in context: 
http://camel.465427.n5.nabble.com/AHS-WS-problem-tp5759334p5759496.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to