Re: Configuring a servlet with camel-jetty

2014-11-04 Thread jack atwork
Hi Willem, Can you provide any more information about this? Do you know if there is a way to configure servlets using camel-jetty or is it simply not possible? I'd really appreciate any insight you have into this. Thanks, Jack On 31 October 2014 11:02, jack atwork jrmpatw...@gmail.com wrote:

Re: Configuring a servlet with camel-jetty

2014-11-04 Thread Reji Mathews
I guess for Jetty, internally there must be a servlet acting at back. Or probably set some option to get it up and running. Just got some clue from http://camel.apache.org/jetty.html . Alternatively http://camel.apache.org/servlet.html can help too. Reji On Tue, Nov 4, 2014 at 4:42 PM, jack

Re: Configuring a servlet with camel-jetty

2014-10-31 Thread jack atwork
Thanks for the reply! I'm using the rest-dsl with camel-jetty and trying to integrate this with the camel-swagger to provide the api docs. Camel-swagger only provides a servlet. So my hope was to reuse camel-jetty to expose this servlet. Do you know if it is possible to register servlets with

Re: Configuring a servlet with camel-jetty

2014-10-30 Thread jack atwork
It's contributed via spring. I can see this part is fine because if I misconfigure the id with something like 'MyUnregisteredContextHandler' then I get a NoSuchBeanException when the camelContext is created. Does anybody know of any examples of setting up a servlet with camel-jetty? If I add a

Re: Configuring a servlet with camel-jetty

2014-10-30 Thread Willem Jiang
Can you explain why you need a setup a servlet for the camel-jetty component? As camel-jetty setup the ServletContextHandler by itself, it doesn’t support you to do it that way. -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog: http://willemjiang.blogspot.com (English)

Configuring a servlet with camel-jetty

2014-10-29 Thread jack atwork
Hi, I'm trying to configure a servlet using the camel-jetty component but I'm struggling and hoping somebody might be able to point out what I'm doing wrong. I expected to be able to register a new Handler and reference it in the endpoint uri . ServletContextHandler handler = new

Re: Configuring a servlet with camel-jetty

2014-10-29 Thread jack atwork
apologies, hit send by a bit early! Hi, I'm trying to configure a servlet using the camel-jetty component but I'm struggling and hoping somebody might be able to point out what I'm doing wrong. I expected to be able to register a new Handler and reference it in the endpoint uri.

Re: Configuring a servlet with camel-jetty

2014-10-29 Thread Andrew Block
Jack, Have you added the handler to the Camel Registry with the name MyContextHandler? In your example, you are referencing the “MyContetHandler” in your route, but never show it being added to the Camel registry. - Andy --  Andrew Block On October 29, 2014 at 10:14:21 AM, jack atwork