JmsQueueEndpoint Request/Reply Configuration

2015-01-27 Thread philburresse
I'm trying to get my hands on a JmsQueueEndpoint configuration example using Java Config. I haven't had much luck searching Google. Are there any out there? Thanks! Phil -- View this message in context: http://camel.465427.n5.nabble.com/JmsQueueEndpoint-Request-Reply-Configuration-tp5762148.h

Camel upgrade 2.10.3 to 2.14.1 duplicate id detected -blocker

2015-01-27 Thread som
I recently upgraded from 2.10.3 to 2.14.1, I am getting the "duplicate id detected" After reading one of the forum, I checked and my project configuration, found two config files- Spring-config.xml and camel-config.xml which have 10 beans with same id present in both, I deleted the file DTSSpr

How to Setup/Locate Camel Core Log?

2015-01-27 Thread SteveR
I'm new to Camel and I'm using Camel 2.14.0 to develop a stand-alone Java application. So far, so good, but I can't seem to locate Camel's core log? I'm using slf4j on top of log4j2 with its log4j2.xml file. I see a few references to the Camel core log in the *Camel in Action* book, but googling

Re: ServiceStatus isProcessing?

2015-01-27 Thread Kranti Parisa
Hi Jens, Thanks for the reply. Using a queue for writing/reading some flags is already in my mind. But wanted to check with the community if there is a way thru the Camel APIs. I got your points and that makes sense. Thanks, Kranti On Mon, Jan 26, 2015 at 10:21 PM, mailingl...@j-b-s.de wrote:

custom service to expose jmx methods - Exception: no security manager: RMI class loader disabled

2015-01-27 Thread dermoritz
i successfully added a custom class that implements org.apache.camel.Service to expose some functionality. All methods returning void work fine. Now i added a method that returns a String (multiple lines). Calling this with jconsole or MissionControl yields: java.rmi.UnmarshalException: Er

Re: Cannot trigger LDAP Endpoint

2015-01-27 Thread Walzer, Thomas
I think that is ok. You could also use a timer or quartz endpoint to trigger it. timer -> ldap -> bean works well for me. Not sure if I got your use case. Cheers, Thomas. > Am 26.01.2015 um 14:01 schrieb Alarm : > > It looks like i found a solution without knowing if this is the best one: > >

CamelContextLifecycle causes ClassNotFoundException when compiled with java 1.7

2015-01-27 Thread yuncil
Hi, I'm using camel 2.13.0 and WebLogicServer 10.3.6 for my application. Also I use the CamelContextLifecycle and there is where the exception occurs. Everything works well if I compile with Java 1.6, but if I use Java 1.7 this Exception occurs during the startup process of the ManagedServer: --

Re: Starting to use AWS-SNS Camel component in Spring

2015-01-27 Thread Claus Ibsen
At runtime you can always use java code to configure and add / remove / modify routes in Camel etc. There is api on CamelContext to work with that. And routes can be defined in java classes that extend RouteBuilder. As it is just java code you can do whatever you want to configure. Though there i