Here's what i am doing:

I have written one JAX-RS service which when invoked creates CamelContext,
adds this route to CamelContext, Create ProducerTemplate, calls
pt.sendBody() method and then starts CamelContext.

Tarun


On Tue, Apr 9, 2013 at 8:19 AM, Chris Geer <ch...@cxtsoftware.com> wrote:

> On Mon, Apr 8, 2013 at 7:45 PM, Tarun Kumar <agrawal.taru...@gmail.com
> >wrote:
>
> > My camel route is :
> >
> > from("direct:start")
> > .to("http://myhost/mypath";);
> >
> > I used :
> >
> > ProducerTemplate template;
> > template.sendBody("direct:start", "This is a test message");
> >
> > to send the exchange. I am getting following exception:
> >
> > No consumers available on endpoint: Endpoint[direct://start].
> >
> > How can i receive the same exchange in direct:start endpoint?
> >
>
> How are you running your application? Standalone camel application from
> main() or OSGI bundle? Assuming it's a stand alone application did you make
> sure and start your context?
>
> >
> >
> > Tarun
> >
>

Reply via email to