Re: CxfEndpoint and configure interceptor on bus

2012-03-07 Thread akuhtz
Hi Aki, Thanks for your reply. The problem was that the interceptor that was defined on the bus was not invoked and even not added to the interceptor chain but this was a stupid configuration error on my side :-( With CXF-2.4.4 it was working if cxfcore:bus id=somebus ... was defined (wrong

CxfEndpoint and configure interceptor on bus

2012-03-06 Thread akuhtz
Hi, I've a question regarding camel-cxf in combination with interceptors configured on the CXF-bus. It seems that the behaviour has changed from CXF-version 2.4.4 to 2.4.6 but I'm not sure if it's a camel problem. I've modified a unit-test that shows the problem. I expected an interceptor that

Re: Classpath problem with camel-cxf and OSGi

2009-12-03 Thread akuhtz
Hi, See here: http://old.nabble.com/-VOTE--Release-Apache-Camel-2.1.0-to26587866s22882.html http://old.nabble.com/-VOTE--Release-Apache-Camel-2.1.0-to26587866s22882.html for download link of version 2.1.0 -- View this message in context:

Re: Does Jaxb With Spring Remoting (proxy) work ?

2009-08-15 Thread akuhtz
Hi, If I get you right the problem is that the classes generated by jaxb do not implement Serializable?! This can be changed by adding custom binding for jaxb. I haven't tried out how to use this with Camel but I guess this should be a starting point. You can also google for jaxb java class

Re: Problem with FileConsumer and pollEnrich

2009-08-10 Thread akuhtz
Hi Claus, FileUtil.stripExt(...) does not exist on trunk ... -- View this message in context: http://www.nabble.com/Problem-with-FileConsumer-and-pollEnrich-tp24795192p24895089.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Problem with FileConsumer and pollEnrich

2009-08-10 Thread akuhtz
Yes, but trunk doesn't build currently ;-) ... If you commit it later, no problem. -- View this message in context: http://www.nabble.com/Problem-with-FileConsumer-and-pollEnrich-tp24795192p24895196.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel Spring Remoting throwing RuntimeException question

2009-08-07 Thread akuhtz
Hi Claus I've created the JIRA issue 1888 with a patch and a test case for the problem with the Exception. For the problem with the camel-example-pojo-messaging where the camelLock files remain in the src/data dirctory on my machine. The steps as stated in readme.txt: call mvn compile

Re: Camel Spring Remoting throwing RuntimeException question

2009-08-06 Thread akuhtz
Hi Thanks for the reply. I think the test-case is slightly different than what my request was. If you change the EchoPojo to inject a dynamic proxy you will see the problem that I have (see code below). public class EchoPojo { @Produce(uri = direct:echo) //private ProducerTemplate

Re: Redelivery in Loadbalancer

2009-06-24 Thread akuhtz
Hi Claus, Works fine now =) Thanks for the fix. -- View this message in context: http://www.nabble.com/Redelivery-in-Loadbalancer-tp24161904p24184289.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: How to prevent routes from started twice?

2009-06-18 Thread akuhtz
Hi, I've tested it yesterday and it works fine. Thanks a lot for that. Maybe you can check my comments after your last commit to enable manual start if the shouldStartContext flag is set to false. -- View this message in context:

Re: How to prevent routes from started twice?

2009-06-12 Thread akuhtz
Hi Claus, I does honor but the problem is that you can't start the camel context (from another bean) if shouldStartContext is set to false, and this is the only way to prevent the execution of code that is triggered by refresh event. I'll create a JIRA ticket with a problem description. --

Re: How to prevent routes from started twice?

2009-06-12 Thread akuhtz
I see it twice! Once for the root application context (which is correct, because its the context where the camel context is defined in) and a second time for the web application context (which I think is incorrect because it's the child context of the root). I don't know if it would work in all

Re: Are durable topic subscriptions destroyed?

2009-03-09 Thread akuhtz
Spring Issue created: http://jira.springframework.org/browse/SPR-5552 Claus Ibsen-2 wrote: On Thu, Mar 5, 2009 at 12:33 PM, akuhtz andreas.ku...@siemens.com wrote: There is currently no code to unsubscribe a durable subscriber as Camel uses the XXMessageListenerContainer classes from

Re: Are durable topic subscriptions destroyed?

2009-03-09 Thread akuhtz
/3/5 akuhtz andreas.ku...@siemens.com: There is currently no code to unsubscribe a durable subscriber as Camel uses the XXMessageListenerContainer classes from the spring framework and inside the spring code there is no unsubscribe code. I solved this yesterday by making a copy of the (in my