Re: Spring Remoting with JMS >V2.16 issue with binding to correct method

2017-04-26 Thread Tim Jones
Thanks Claus. for others in the dark the change needed to enable the Spring Remoting example to work >2.16.x (effected by CAMEL-5402) with multiple methods is to camel-client-remoting.xml adding binding="false" as follows -- View this message in context:

Spring Remoting with JMS >V2.16 issue with binding to correct method

2017-04-26 Thread Tim Jones
We use Spring remoting with JMS (Camel V2.15.4) to proxy our calls between Swing clients and a Karaf server. From 2.16.x there appears to be an issue with binding to the correct method. This can fairly easily be reproduced by modifying the examples in spring-example-spring-jms and adding an

Re: Camel with OSGI in Felix with Spring DSL

2017-03-06 Thread Tim Jones
As Claus has pointed out you are probably better not to use Gemini Blueprint, it is not a very active project and I doubt whether you will find much support within the Karaf/Felix/OSGi community. -- View this message in context:

Re: Camel with OSGI in Felix with Spring DSL

2017-03-05 Thread Tim Jones
Kumar, sorry can't help with your immediate issue but something you might want to consider before spending too much time going down the SpringDM route is that the SpringDM project is no longer being actively maintained. As alluded to above there are alternatives such as Blueprint (note also that

Re: karaf issues with camel and activemq latest 2.17.2

2016-08-07 Thread Tim Jones
Maybe related to this http://karaf.922171.n3.nabble.com/ActiveMQ-and-Camel-2-17-x-on-Karaf-td4046427.html -- View this message in context: http://camel.465427.n5.nabble.com/karaf-issues-with-camel-and-activemq-latest-2-17-2-tp5786124p5786131.html Sent from the Camel - Users mailing list

Re: OsgiServiceRegistry caching service references, why?

2016-02-23 Thread Tim Jones
Quinn, I have sent an email to you with a link to Dropbox with the necessary files -- View this message in context: http://camel.465427.n5.nabble.com/OsgiServiceRegistry-caching-service-references-why-tp5777410p5778142.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: OsgiServiceRegistry caching service references, why?

2016-02-22 Thread Tim Jones
Hi Quinn, I have added a patch as part of https://issues.apache.org/jira/browse/CAMEL-9631 which does not contain a solution but only an integrated test to highlight the issue. I am puzzled as to how you are able to pick up the new implementation, more than likely I am doing something wrong

Re: OsgiServiceRegistry caching service references, why?

2016-02-11 Thread Tim Jones
Quinn, I will post something on Monday when back at work. However it shouldn't be hard to replicate if you uninstall the bundle providing the service and install a modified bundle offering the same service but with different functionality (e.g. perhaps just output something different to the

Re: OsgiServiceRegistry caching service references, why?

2016-02-10 Thread Tim Jones
I am not sure if I completely understand the conversation but please note my original issue was found using camel-scr i.e. Declarative Services so please make sure any solution is compatible. -- View this message in context:

OsgiServiceRegistry caching service references, why?

2016-02-08 Thread Tim Jones
I have looked at the code in org.apache.camel.core.osgi.OsgiServiceRegistry (camel-core-osgi-2.15.4) and it appears to cache the service references. This means that if I uninstall/install the bundle supplying the service it wont automagically 'pick up' the new service. For what reason(s) are the

Re: Using pre-allocated Exchange with Proxy

2013-07-11 Thread Tim Jones
Hi Lars, did you come up with a solution for this problem? I am also interested in being able to add additional message headers to the Exchange while using a ProxyBuilder. Regards, Tim -- View this message in context:

Enrich a message using Spring remoting and a Spring service

2013-07-04 Thread Tim Jones
Hi, I would like advice on how to intercept and enrich a message where the client is implemented using Spring remoting and the server implemented with a Spring service. For example the client configured as bean id=someService class=org.apache.camel.spring.remoting.CamelProxyFactoryBean