Re: Camel resequencer() is not working inside choice - java dsl

2015-04-27 Thread Sumit
Hi, Thanks for your quick reply. We have following concerns: 1. .to() will not fit in our case as we dont know the endpoint uris earlier. I determine the endpoints as java Set. So is there any workaround for this? 2. If we put the messages in another queue after resequencing and run the followi

Camel.2.14.x.notest - Build # 148 - Still Failing

2015-04-27 Thread Apache Jenkins Server
The Apache Jenkins build system has built Camel.2.14.x.notest (build #148) Status: Still Failing Check console output at https://builds.apache.org/job/Camel.2.14.x.notest/148/ to view the results.

Re: Camel resequencer() is not working inside choice - java dsl

2015-04-27 Thread Willem Jiang
When you use the resequencer(), you need to specify the to endpoint. The route can be changed to  from(...)  .choice()  .when(...)  .resequence(header(...)).stream().to(“direct:A”)  .endchoice()  .when(...)  .resequence(header(...)).stream().to(“direct:A”)  .endchoice()  .end()  from(“direct:A”).

Re: Unable to resolve 192.0: missing requirement [192.0] osgi.wiring.package; (&(osgi.wiring.package=org.apache.camel.component.jms)(version>=2.12.0)(!(version>=3.0.0)

2015-04-27 Thread Willem Jiang
Does your bundle import the package of  weblogic.jndi? You need to install the weblogic bundle yourself at the same time, I’m not sure if there is a supported OSGi bundle there. -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog: http://willemjiang.blogspot.com (English) http://jnn.

Re: [PROPOSAL] camel-extra moves forward

2015-04-27 Thread Willem Jiang
Github is more popular now days, +1 for moving camel-extra to Github. -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog: http://willemjiang.blogspot.com (English) http://jnn.iteye.com (Chinese) Twitter: willemjiang Weibo: 姜宁willem On April 27, 2015 at 2:13:01 AM, Christian Müll

Re: issues by building the camel-cassandraql component

2015-04-27 Thread Willem Jiang
I cannot reproduce it on my box, did you run it within a VM? -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog: http://willemjiang.blogspot.com (English) http://jnn.iteye.com (Chinese) Twitter: willemjiang Weibo: 姜宁willem On April 25, 2015 at 5:04:21 AM, Christian Müller (chris

Re: Patch for https://issues.apache.org/jira/browse/CAMEL-8707

2015-04-27 Thread Willem Jiang
The patch looks good, I will merge it shortly. -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog: http://willemjiang.blogspot.com (English) http://jnn.iteye.com (Chinese) Twitter: willemjiang Weibo: 姜宁willem On April 27, 2015 at 11:16:49 PM, Gururaja Kowlali (kgurur...@gmail.co

[GitHub] camel pull request: CAMEL-8706: Increase set of parameters for Ela...

2015-04-27 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/camel/pull/507 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabl

Re: Unable to resolve 192.0: missing requirement [192.0] osgi.wiring.package; (&(osgi.wiring.package=org.apache.camel.component.jms)(version>=2.12.0)(!(version>=3.0.0)

2015-04-27 Thread marcoisaac
Thanks i think it works , but now im having this message. :( Caused by: javax.naming.NoInitialContextException: Cannot instantiate class: weblogic.jndi.WLInitialContextFactory [Root exception is java.lang.ClassNotFoundException: weblogic.jndi.WLInitialContextFactory not found from bundle [billing

Re: Unable to resolve 192.0: missing requirement [192.0] osgi.wiring.package; (&(osgi.wiring.package=org.apache.camel.component.jms)(version>=2.12.0)(!(version>=3.0.0)

2015-04-27 Thread Claus Ibsen
Hi You should ask on servicemix user forum as this is really a SMX question. But it seems like you have not installed the camel-jms feature first which you need. You can do this from the SMX command line features:install camel-jms And then install your own application. On Mon, Apr 27, 2015 at

Unable to resolve 192.0: missing requirement [192.0] osgi.wiring.package; (&(osgi.wiring.package=org.apache.camel.component.jms)(version>=2.12.0)(!(version>=3.0.0)

2015-04-27 Thread marcoisaac
im having a problem when i start my service mix 5.0.0 and i have a jar configuration on deploy folder ,this is my camel context code: http://www.springframework.org/schema/beans"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xmlns:camel="http://camel.apache.org/schema/s

Camel resequencer() is not working inside choice - java dsl

2015-04-27 Thread Sumit
Hi, I have applied the resequencer() function conditionally like the following example: from(...) .choice() .when(...) .resequence(header(...)).stream() .endchoice() .when(...) .resequence(header(...)).stream() .endchoice() .recipientList(...) .end() The following message is coming: org.apache.

Patch for https://issues.apache.org/jira/browse/CAMEL-8707

2015-04-27 Thread Gururaja Kowlali
Hi Camel Dev, As evaluating camel smpp, for sending smses, I found a bug in SmppConnectionFactory.java I have attached the patch for this fix in the jira ticket. https://issues.apache.org/jira/browse/CAMEL-8707 Can you please review it and let me know the next steps? Regards, Guru

[GitHub] camel pull request: CAMEL-8706: Increase set of parameters for Ela...

2015-04-27 Thread mauriciojost
GitHub user mauriciojost opened a pull request: https://github.com/apache/camel/pull/507 CAMEL-8706: Increase set of parameters for Elasticsearch More parameters are available for Elasticsearch component, including replication type, write consistency level and multiple transp