Re: Quartz2 Endpoint Exception

2016-04-01 Thread Hubertus.Willuhn
but seems not right at all... Thx and best regards -- View this message in context: http://camel.465427.n5.nabble.com/Quartz2-Endpoint-Exception-tp5780221p5780230.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Quartz2 Endpoint Exception

2016-04-01 Thread Claus Ibsen
not to long though ^^ >> Maybe i should report this to spring then? >> >> Best regards >> >> >> >> -- >> View this message in context: >> http://camel.465427.n5.nabble.com/Quartz2-Endpoint-Exception-tp5780221p5780226.html >> Sent from the Ca

Re: Quartz2 Endpoint Exception

2016-04-01 Thread Claus Ibsen
s a URI-String? > > Any clearification would be nice..if its not to long though ^^ > Maybe i should report this to spring then? > > Best regards > > > > -- > View this message in context: > http://camel.465427.n5.nabble.com/Quartz2-Endpoint-Exception-tp5780221

Re: Quartz2 Endpoint Exception

2016-04-01 Thread Hubertus.Willuhn
ot to long though ^^ Maybe i should report this to spring then? Best regards -- View this message in context: http://camel.465427.n5.nabble.com/Quartz2-Endpoint-Exception-tp5780221p5780226.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Quartz2 Endpoint Exception

2016-04-01 Thread Claus Ibsen
anRegistry.java:230) > at > org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:299) > at > org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:194) > at &

Re: Quartz2 Endpoint Exception

2016-04-01 Thread Hubertus.Willuhn
icationContext.refresh(AbstractApplicationContext.java:480) at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:689) at org.springframework.boot.SpringApplication.run(SpringApplication.java:321) at com.din.xscore.imp.CamelApp.main(CamelApp.java:67) -- View this m

Re: Quartz2 Endpoint Exception

2016-04-01 Thread Claus Ibsen
5+*+*+*+%3F due to: null > > Whats wrong here? > Any help would be nice. > > P.S: Without the call to endpoint() all works fine! > > P.P.S: If this is a Bug than i can do a ticket on this... > > Best regards Hubertus > > > > -- > View this message in context:

Quartz2 Endpoint Exception

2016-04-01 Thread Hubertus.Willuhn
due to: null Whats wrong here? Any help would be nice. P.S: Without the call to endpoint() all works fine! P.P.S: If this is a Bug than i can do a ticket on this... Best regards Hubertus -- View this message in context: http://camel.465427.n5.nabble.com/Quartz2-Endpoint-Exception-tp5780221.html Sent from the Camel - Users mailing list archive at Nabble.com.

No adapter for endpoint exception - using camel with spring-boot & spring-ws

2015-06-24 Thread Matthew Wells
I am trying to use camel (2.15.2) within a spring-boot application to handle incoming web service calls. I created an initial working spring boot project (no camel) following the guidelines here http://spring.io/guides/gs/producing-web-service/ I then attempted to integrate the Camel: Spring Web

Re: Endpoint exception handling

2014-05-22 Thread rams
Hi, Here you used two methods of same name handleEndpointException(). Out of these two which one should use in someService class to handle endpoint exception. Could you please provide complete example for my understanding? Thanks Ram -- View this message in context: http://camel.465427

Re: Endpoint exception handling

2012-02-26 Thread Claus Ibsen
e SimpleRegistry with CamelContext and add it to this strategy from java code. Then in the endpoint uri, you just refer to the id of your custom poll strategy using #id file:foo?pollStrategy=#myPollStrategy If you use Spring XML then > Thank you > > Best Regards Tuomas

Re: Endpoint exception handling

2012-02-24 Thread tkatva
uomas Katva -- View this message in context: http://camel.465427.n5.nabble.com/Endpoint-exception-handling-tp5504378p5513828.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Endpoint exception handling

2012-02-22 Thread Alex Anderson
; Also it requires your consumers to implement this logic to support >>> this kind of error handling. >>> >>> >>> >>> >>>> Thanks, >>>> >>>> Alex >>>> >>>> >>>> On 22 February 2012 1

Re: Endpoint exception handling

2012-02-22 Thread Claus Ibsen
, such as eg >>>> from("file:foo") >>>> >>>> Then that would be consumer specific how it validates and reports >>>> mis-configuration. >>>> >>>> You cannot use the onException / dead letter channel for that. As its &

Re: Endpoint exception handling

2012-02-22 Thread Alex Anderson
quot;file:foo") >>> >>> Then that would be consumer specific how it validates and reports >>> mis-configuration. >>> >>> You cannot use the onException / dead letter channel for that. As its >>> like chicken-egg. You need a valid message in the Camel ro

Re: Endpoint exception handling

2012-02-22 Thread Claus Ibsen
tter channel for that. As its >> like chicken-egg. You need a valid message in the Camel routing >> engine, before onException / dead letter channel can be used. >> >> >> >> On Wed, Feb 22, 2012 at 8:28 AM, tkatva wrote: >>> Hello >>> >>&

Re: Endpoint exception handling

2012-02-22 Thread Alex Anderson
, Feb 22, 2012 at 8:28 AM, tkatva wrote: >> Hello >> >> Camel is great but one thing I am wondering is that is there a way to catch >> a Endpoint exception ? For example if I am polling on a directory and the >> url is spelled wrong, can I catch that exception pr

Re: Endpoint exception handling

2012-02-21 Thread Claus Ibsen
on occurs in consuming endpoint ? In for example > FTP/FTPS/SFTP/FILE endpoints ? I would like to run my custom code whenever > exception occurs in consuming endpoints > > Thank you > > Best Regards Tuomas Katva > > -- > View this message in context: > http://ca

Re: Endpoint exception handling

2012-02-21 Thread tkatva
endpoints Thank you Best Regards Tuomas Katva -- View this message in context: http://camel.465427.n5.nabble.com/Endpoint-exception-handling-tp5504378p5504428.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Endpoint exception handling

2012-02-21 Thread Claus Ibsen
ne, before onException / dead letter channel can be used. On Wed, Feb 22, 2012 at 8:28 AM, tkatva wrote: > Hello > > Camel is great but one thing I am wondering is that is there a way to catch > a Endpoint exception ? For example if I am polling on a directory and the > url is spelle

Endpoint exception handling

2012-02-21 Thread tkatva
Hello Camel is great but one thing I am wondering is that is there a way to catch a Endpoint exception ? For example if I am polling on a directory and the url is spelled wrong, can I catch that exception programmatically ? Or do just need to check the log for it ? Thank you Best Regards

Re: No consumers available on endpoint exception

2012-01-12 Thread MichaelAtSAG
Component VM worked perfectly. Thanks! -- View this message in context: http://camel.465427.n5.nabble.com/No-consumers-available-on-endpoint-exception-tp5138202p5140672.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: No consumers available on endpoint exception

2012-01-12 Thread Hadrian Zbarcea
e.blogspot.com - -- View this message in context: http://camel.465427.n5.nabble.com/No-consumers-available-on-endpoint-exception-tp5138202p5140082.html Sent from the Camel - Users mailing list archive at Nabble.com. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.ta

Re: No consumers available on endpoint exception

2012-01-12 Thread Ashwin Karpe
ce (a Progress Software Corporation subsidiary) http://fusesource.com Blog: http://opensourceknowledge.blogspot.com - -- View this message in context: http://camel.465427.n5.nabble.com/No-consumers-available-on-endpoint-exception-tp513820

Re: No consumers available on endpoint exception

2012-01-11 Thread Christian Müller
> endpoint: > Endpoint[direct://Emit_InvLow]. Exchange[PartInventoryLow.xml] > > I believe this is due to the use of two camel context files. I then changed > the endpoint to use seda instead of direct, yet nothing happens when I do > this. > > How do I connect the routes tog

No consumers available on endpoint exception

2012-01-11 Thread MichaelAtSAG
/No-consumers-available-on-endpoint-exception-tp5138202p5138202.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: No consumers available on endpoint exception?

2011-12-15 Thread Willem Jiang
know how to use camel-test.., and we don't need more configure file of camel in my application, so i need to use the api and parse my configure file. -- View this message in context: http://camel.465427.n5.nabble.com/No-consumers-available-on-endpoint-exception-tp5076708p5076812.html Sent fr

Re: No consumers available on endpoint exception?

2011-12-15 Thread xiangqiuzhao
nsumers-available-on-endpoint-exception-tp5076708p5076812.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: No consumers available on endpoint exception?

2011-12-14 Thread xiangqiuzhao
5.nabble.com/No-consumers-available-on-endpoint-exception-tp5076708p5076800.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: No consumers available on endpoint exception?

2011-12-14 Thread Claus Ibsen
(exchange); >>>        System.out.println(new >>> String((byte[])exchange.getOut().getBody())); >>> >>> >>> Exception in thread "main" org.apache.camel.CamelExchangeException: No >>> consumers available on endpoint: Endpoint[direct://test]. >>> Exchange[Mes

Re: No consumers available on endpoint exception?

2011-12-14 Thread Claus Ibsen
xception in thread "main" org.apache.camel.CamelExchangeException: No >> consumers available on endpoint: Endpoint[direct://test]. >> Exchange[Message: >> send something] >>        at >> >> org.apache.camel.component.direct.DirectProducer.process(DirectPro

Re: No consumers available on endpoint exception?

2011-12-14 Thread Willem Jiang
No consumers available on endpoint: Endpoint[direct://test]. Exchange[Message: send something] at org.apache.camel.component.direct.DirectProducer.process(DirectProducer.java:46) at com.sunyard.camel.TestJmsComponent.main(TestJmsComponent.java:51) where is wrong in my program? -- View this message in context: http:/

Re: No consumers available on endpoint exception?

2011-12-14 Thread Christian Schneider
gram? -- View this message in context: http://camel.465427.n5.nabble.com/No-consumers-available-on-endpoint-exception-tp5076708p5076708.html Sent from the Camel - Users mailing list archive at Nabble.com. -- Christian Schneider http://www.liquid-reality.de Open Source Architect Talend Application Integration Division http://www.talend.com

Re: No consumers available on endpoint exception?

2011-12-14 Thread Claus Ibsen
No > consumers available on endpoint: Endpoint[direct://test]. Exchange[Message: > send something] >        at > org.apache.camel.component.direct.DirectProducer.process(DirectProducer.java:46) >        at com.sunyard.camel.TestJmsComponent.main(TestJmsComponent.java:51) > > >

No consumers available on endpoint exception?

2011-12-14 Thread xiangqiuzhao
nyard.camel.TestJmsComponent.main(TestJmsComponent.java:51) where is wrong in my program? -- View this message in context: http://camel.465427.n5.nabble.com/No-consumers-available-on-endpoint-exception-tp5076708p5076708.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Endpoint exception

2011-12-02 Thread Claus Ibsen
Katva > > -- > View this message in context: > http://camel.465427.n5.nabble.com/Endpoint-exception-tp5039663p5039663.html > Sent from the Camel - Users mailing list archive at Nabble.com. -- Claus Ibsen - FuseSource Email: cib...@fusesource.com Web: http://fus

Endpoint exception

2011-12-01 Thread tkatva
in context: http://camel.465427.n5.nabble.com/Endpoint-exception-tp5039663p5039663.html Sent from the Camel - Users mailing list archive at Nabble.com.

RE: CXF + Camel + JMS Endpoint exception handling

2011-06-14 Thread Sven Zethelius
Zethelius; users@camel.apache.org Subject: Re: CXF + Camel + JMS Endpoint exception handling Current Camel transport for CXF just provides a transport tunnel for use to use. It can't handle the exception that comes from the service implementation. If you want the camel to handle the applicat

Re: CXF + Camel + JMS Endpoint exception handling

2011-06-08 Thread Willem Jiang
Current Camel transport for CXF just provides a transport tunnel for use to use. It can't handle the exception that comes from the service implementation. If you want the camel to handle the application exception, you may consider to use camel CXFBean[1] components. BTW you had to marshal the

CXF + Camel + JMS Endpoint exception handling

2011-06-08 Thread Sven Zethelius
I've started playing with CXF + Camel + JMS, and have set up a sample client and service that can put and get messages from a JMS Queue. I've started going deeper to understand the transaction and retry logic since one of the use cases I have is to use either the JMS or Camel retry logic to rep