Re: Failed to create route on activemq

2015-03-25 Thread Claus Ibsen
The activemq (or jms) component do not have a option named noop The options is listed here http://camel.apache.org/jms For monitoring ActiveMQ you can check its website, there is a search box you can type in keywords and find links to read first. http://activemq.apache.org/ On Wed, Mar 25, 2015

Re: Failed to create route

2014-01-03 Thread fkfausa
Thank's guy's. Your comments made me realize that i lacked beans. One of them was "required" that set up the transaction policy. -- View this message in context: http://camel.465427.n5.nabble.com/Failed-to-create-route-tp5745435p5745476.html Sent from the Camel - Users mailing list archive at

Re: Failed to create route

2014-01-02 Thread kraythe .
You have to register a transaction policy in the registry and with the transaction manager. In straight java it looks like this. final JmsTransactionManager txMgr = new JmsTransactionManager(amqcf); registry.bind(KEY_AMQ_TXMANAGER, txMgr); final SpringTransactionPolicy txPolicyRequired

Re: Failed to create route

2014-01-02 Thread Claus Ibsen
Hi required is implied. So try changing transacted("required"). to ... transacted(). On Thu, Jan 2, 2014 at 1:45 PM, fkfausa wrote: > Hi! > > I get the following error: > Caused by: org.apache.camel.RuntimeCamelException: > org.apache.camel.FailedToCreateRouteException: Failed to create rou

Re: Failed to create route when using Mina2

2013-08-26 Thread Bharath
cool!! It works perfectly now Thank you so much Claus for your suggestion.I used 7 edit hl7 tool and validated the message before giving request Cheers!!! Bharath -- View this message in context: http://camel.465427.n5.nabble.com/Failed-to-create-route-when-using-Mina2-tp5737923p5737947.html

Re: Failed to create route when using Mina2

2013-08-26 Thread Claus Ibsen
You need to send valid HL7 data. There is HL7 simulator apps you can find on the internet to use for testing. Or just check the source code for camel-hl7 for some examples we use for testing. On Mon, Aug 26, 2013 at 9:54 AM, Bharath wrote: > aaah!! > > Thanks Claus,I changed my endpoint from Min

Re: Failed to create route when using Mina2

2013-08-26 Thread Bharath
aaah!! Thanks Claus,I changed my endpoint from Mina2 to Mina and the bundle has been deployed and route has started successfully Now I gave request to the TCP endpoint mentioned above using TCP client java program but there was no response. Is there any other way to test this route?? Cheers!!!

Re: Failed to create route when using Mina2

2013-08-26 Thread Claus Ibsen
Camel 2.10 uses mina 1.x for hl7. You need Camel 2.11 or newer for mina 2.x using hl7 Check out the release notes http://camel.apache.org/camel-2110-release.html On Mon, Aug 26, 2013 at 8:08 AM, Bharath wrote: > Hi, > > I have a route defined in my routebuilder class as > > from("mina2:tcp

Re: failed to create route

2011-05-31 Thread Christian Müller
Your endpoint should looks like the following: from("imaps:// imap.gmail.com?password=&username=myuse...@gmail.com&delete=false&unseen=true&consumer.delay=6

Re: failed to create route

2011-05-31 Thread Claus Ibsen
Hi Check the mail component wiki page more careful http://camel.apache.org/mail.html If you look at the 2 options it complain about, and look in the options table you get your answer why it fails. On Tue, May 31, 2011 at 10:06 PM, fachhoch wrote: > Ok I am using camel-mail-2.7.1 > platform wi

Re: failed to create route

2011-05-31 Thread Donald Whytock
Try using "myuserid" instead of "myuse...@gmail.com". Last I tried, mail endpoints don't like full email addresses as user IDs. Don On Tue, May 31, 2011 at 4:06 PM, fachhoch wrote: > Ok I am using camel-mail-2.7.1 > platform windows > server running on jetty > java 1.6 > I am getting parameter

Re: failed to create route

2011-05-31 Thread fachhoch
Ok I am using camel-mail-2.7.1 platform windows server running on jetty java 1.6 I am getting parameter not found exception I am trying out the configration specified in the example . here is my router configration from("imaps://imap.gmail.com?password=&username=myuse...@gmail.com&del

Re: failed to create route

2011-05-31 Thread Christian Müller
Please have a look at [1] which information you should provide to get help (Which version of Camel do you use? How looks your route? ...). [1] http://camel.apache.org/support.html#Support-Howtogethelp Best, Christian On Tue, May 31, 2011 at 9:39 PM, fachhoch wrote: > I am new bee trying to use

Re: Failed to create route

2011-04-04 Thread jpalmer1026
Actually, I figured it out. Silly mistake on my part. I was usinginstead of (note the 'file' keyword before the colon). -- View this message in context: http://camel.465427.n5.nabble.com/Failed-to-create-route-tp4282517p4282652.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Failed to create route

2011-04-04 Thread jpalmer1026
I declared my Properties component as a bean as described in my post. -- View this message in context: http://camel.465427.n5.nabble.com/Failed-to-create-route-tp4282517p4282634.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Failed to create route

2011-04-04 Thread Hadrian Zbarcea
Do you have a properties placeholder [1] for your properties and/or is it at the expected location? Hadrian [1] http://camel.apache.org/properties.htm On Apr 4, 2011, at 3:10 PM, jpalmer1026 wrote: > Hi, > > I'm trying to use the camel properties component to externalize a properties >