Re: Apache Camel as ETL

2015-12-16 Thread souciance
In general I would say integration is usually event-based and hopefully asynchronous. It makes everything much easier to handle. In your case it is batch oriented and you need to take action afterwards. I am sure it can be achieved in Camel and you'd probably have to write several customised

Re: Apache Camel as ETL

2015-12-15 Thread Bilgin Ibryam
This may give you some ideas http://stackoverflow.com/questions/20638680/camel-stop-when-there-are-no-files-in-the-folder B. On 15 December 2015 at 08:26, contactreji wrote: > Hi Folks > > We are trying to implement some ETL ( batch mode ) use cases. These jobs > should

Re: Apache Camel Optaplanner Component

2015-10-29 Thread Bilgin Ibryam
Can you add here the full exception message pls. On 28 October 2015 at 09:33, AhmedAlaa333 wrote: > Hello, > > I tried to change the "OptaPlannerSyncSolverTest" function to solve Vehicle > Routing Problem instead of CloudBalancing > > CloudBalance: >

Re: Apache Camel bean parameter binding issue with Spring DSL

2015-10-05 Thread wheli
Ok, thanks Claus. Would you recommend trying 2.15.3 or 2.16? Is 2.15.3 the latest stable? -- View this message in context: http://camel.465427.n5.nabble.com/Apache-Camel-bean-parameter-binding-issue-with-Spring-DSL-tp5772200p5772294.html Sent from the Camel - Users mailing list archive at

Re: Apache Camel bean parameter binding issue with Spring DSL

2015-10-05 Thread Claus Ibsen
Hi I am sorry to say it but you may try a newer release to see if it works there. I could not reproduce any issue on lastest code. And mind that ${exchange} has just only been added to simple language in 2.16 release. On Mon, Oct 5, 2015 at 2:47 PM, wheli wrote: >

Re: Apache Camel bean parameter binding issue with Spring DSL

2015-10-05 Thread wheli
Sure... public String extractDocumentRootOid(Exchange exchange) throws Exception public Organization getOrganizationByOid(Exchange exchange, String oid) throws InterchangeException (Organization is a custom java object) public String extractStyleSheetAttributeFromOrganization(Exchange exchange,

Re: Apache Camel bean parameter binding issue with Spring DSL

2015-10-05 Thread wheli
I'd rather not be pigeon-holed with the header namemeaning, I'd like to make it so that the creator of any route can name the header whatever they want, and use this method, without having any knowledge of the method parameters (having to go look at the java components). -- View this

Re: Apache Camel bean parameter binding issue with Spring DSL

2015-10-05 Thread Claus Ibsen
Hi Yeah you can try latest 2.13.x in case you consider upgraded on existing release branch. But 2.15.3 is the latest stable release. And 2.16.0 is being built this week and hopefully GA next week. On Mon, Oct 5, 2015 at 3:02 PM, wheli wrote: > Ok, thanks Claus. > >

Re: Apache Camel bean parameter binding issue with Spring DSL

2015-10-05 Thread wheli
I upgraded and it made no difference, but then I noticed that I was missing a closing parenthesis on my "transformBodyUsingStyleSheet" method. I fixed this and it resolved the issue. Sorry for not seeing that, but i am all set now. Thanks! -- View this message in context:

Re: Apache Camel bean parameter binding issue with Spring DSL

2015-10-05 Thread Claus Ibsen
On Mon, Oct 5, 2015 at 4:13 PM, wheli wrote: > I upgraded and it made no difference, but then I noticed that I was missing a > closing parenthesis on my "transformBodyUsingStyleSheet" method. I fixed > this and it resolved the issue. Sorry for not seeing that, but i am

Re: Apache Camel bean parameter binding issue with Spring DSL

2015-10-03 Thread calyan.bandi
Hi, You may try one of the below two approaches: 1. Redefine your method signature and use the Bean annotations. public void transformBodyUsingStyleSheet(Exchange exchange, @Header("organizationStyleSheet") String styleSheet) { .. } 2. If the above didn't work, modify the bean delcaration in

Re: Apache Camel bean parameter binding issue with Spring DSL

2015-10-02 Thread Claus Ibsen
Can you should the method signature for those methods. Also if they are void or return a value. And what version of Camel do you use? On Fri, Oct 2, 2015 at 10:18 PM, wheli wrote: > I am running into a strange issue with Apache Camel and Spring DSL. Here is > an

Re: Apache Camel XA transaction

2015-08-24 Thread Christian Müller
Have a look here: https://github.com/muellerc/camel-in-transaction/blob/master/src/test/java/org/apache/cmueller/camel/samples/camelone/tx/JmsAndJdbcCompensationTransactionSampleTest.java Hope this helps, Christian - Software Integration Specialist Apache Member V.P. Apache

Re: Apache Camel XA transaction

2015-08-24 Thread Christian Müller
Sorry, I mean this one: https://github.com/muellerc/camel-in-transaction/tree/master/src/test/java/org/apache/cmueller/camel/samples/camelone/xa Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer

Re: Apache Camel XA transaction

2015-08-20 Thread kishoreJ
Hi claus But in that transactional client it is not specifying anything about what i need . I have to update a database if the message is sent successfully to a queue , if one fails then i have to roll back both the transactions. Here i am dealing with a database transaction and a camel

Re: Apache Camel XA transaction

2015-08-19 Thread Claus Ibsen
Hi You can read about transactions here http://camel.apache.org/transactional-client.html On Thu, Aug 20, 2015 at 5:02 AM, kishoreJ kishore00...@gmail.com wrote: have to send a message to an endpoint using camel and at the same time if the message is sent successfull then i have to update the

Re: Apache Camel CXF Transport - Adding interceptors to JaxWs Client

2015-08-14 Thread Resmis
Thanks a lot Dan. I gave namespace declaration for spring elements. It solved the problem. Thanks, Resmi -- View this message in context: http://camel.465427.n5.nabble.com/Apache-Camel-CXF-Transport-Adding-interceptors-to-JaxWs-Client-tp5770596p5770715.html Sent from the Camel - Users mailing

Re: Apache Camel CXF Transport - Adding interceptors to JaxWs Client

2015-08-13 Thread Resmis
Hi Dan, Thanks for the response. bean ref=“…”/ also not working. It is giving following exception: org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Cannot locate BeanDefinitionParser for element [bean] I was referring to

Re: Apache Camel CXF Transport - Adding interceptors to JaxWs Client

2015-08-13 Thread Daniel Kulp
Ah.. I see the problem. You are within an element (the client element) that has the default namespace reset to xmlns=http://cxf.apache.org/jaxws”. Thus the “ref” element is in that namespace, not the spring namespace.Either use a prefix for the cxf elements or put an xmlns decl on the

Re: Apache Camel CXF Transport - Adding interceptors to JaxWs Client

2015-08-12 Thread Daniel Kulp
Isn’t it “bean ref=“…”/ and not “ref bean=“…”/ ? Dan On Aug 12, 2015, at 2:16 AM, Resmis reshmi...@gmail.com wrote: Hi, We are invoking a soap service through RabbitMQ using Camel transport JaxWS client as given below (Ref:

Re: Apache Camel Splitter, Threadpool and JMS

2015-08-01 Thread xlogger
Found the answer finally and posted on Stackoverflow http://stackoverflow.com/a/31738832/1180885 -- View this message in context: http://camel.465427.n5.nabble.com/Apache-Camel-Splitter-Threadpool-and-JMS-tp5770128p5770183.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Apache Camel Endpoint

2015-07-22 Thread Claus Ibsen
That is component specific how its implemented in camel-rabbitmq and also the rabbitmq client it uses. How it deals with network connection issues. On Wed, Jul 22, 2015 at 7:39 PM, kethireddy s.kethire...@f5.com wrote: Thanks Claus for your response what about RabbitMQ url. specific to

Re: Apache Camel Endpoint

2015-07-22 Thread kethireddy
Thanks Claus for your response what about RabbitMQ url. specific to consumer endpoint. -- View this message in context: http://camel.465427.n5.nabble.com/Apache-Camel-Endpoint-tp5769715p5769762.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Apache Camel Endpoint

2015-07-22 Thread kethireddy
Can you please explain little more details. How to say camel throw an exception if consumer host url is not valid. -- View this message in context: http://camel.465427.n5.nabble.com/Apache-Camel-Endpoint-tp5769715p5769774.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Apache Camel Endpoint

2015-07-22 Thread kethireddy
Can you please explain little more details. How to say camel throw an exception if consumer host url is not valid. -- View this message in context: http://camel.465427.n5.nabble.com/Apache-Camel-Endpoint-tp5769715p5769775.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Apache Camel Endpoint

2015-07-21 Thread Claus Ibsen
On Wed, Jul 22, 2015 at 7:46 AM, kethireddy s.kethire...@f5.com wrote: Hi How to validate source endpoint. I have a scenario as follows Requirement: Consume messages from RabbitMQ. I tried as from(rabbitmq://testhost:5672/xExchange?queue=xxxQueueusername=)

Re: Apache Camel RouteBuilder in Spring doesn't launch configure()

2015-07-02 Thread alexis.jacquemart
Hi Claus, I tried without arguments but I still get the same error. I'm going to try with a basic RouteBuilder from().to(), just to see if the problem is still here. -- View this message in context:

Re: Apache Camel RouteBuilder in Spring doesn't launch configure()

2015-07-01 Thread Claus Ibsen
Hi Try with a default no-arg constructor in your route class so it has no other dependency and see if it can be found then. If so then its maybe a problem with those 2 args you specify as dependency. On Wed, Jul 1, 2015 at 4:53 PM, alexis.jacquemart aceso...@hotmail.fr wrote: I'm working with

Re: Apache Camel Routing and Apache CXF Rest with Proxy

2015-06-24 Thread Bhavesh Mistry
I just need some help and guidelines with above issue. Stack-0verflow Question: http://stackoverflow.com/questions/30853744/apache-camel-and-cxf-jax-rs-rest-services-end-point-routing-and-proxy-server Thanks, Bhavesh On Mon, Jun 15, 2015 at 2:56 PM, Bhavesh Mistry mistry.p.bhav...@gmail.com

Re: Apache Camel Routing and Apache CXF Rest with Proxy

2015-06-18 Thread Bhavesh Mistry
I would appreciate if any one has deal with similar issue as above. I would appreciate your input. Thanks, Bhavesh On Tue, Jun 16, 2015 at 11:55 AM, Bhavesh Mistry mistry.p.bhav...@gmail.com wrote: Adding Dev group to see how I can achieve this. Thanks, Bhavesh On Mon, Jun 15, 2015 at

Re: Apache Camel Routing and Apache CXF Rest with Proxy

2015-06-17 Thread Aki Yoshida
1. If it is a cxf's jaxrs service, you can use the cxf-bean component to directly call that service. http://camel.apache.org/cxf-bean-component.html 2. you can just add your headers as Camel headers in the route using setHeader By the way, you don't need to add dev for usage questions.

Re: Apache Camel Routing and Apache CXF Rest with Proxy

2015-06-16 Thread Bhavesh Mistry
Adding Dev group to see how I can achieve this. Thanks, Bhavesh On Mon, Jun 15, 2015 at 2:56 PM, Bhavesh Mistry mistry.p.bhav...@gmail.com wrote: Hi All, I am new to Apache Camel and trying to solve following problem with routing: I have CXF JAX-RS based REST Service implemented and

Re: Apache Camel Simple Language regex fails

2015-06-06 Thread Claus Ibsen
Hi Your regular expression is wrong. You need to have it match all the digits. I added an unit test public void testSimpleRegexp() throws Exception { exchange.getIn().setBody(12345678); assertPredicate(${body} regex '\\d+', true); assertPredicate(${body} regex

Re: Apache Camel make a route to a public Active MQ server

2015-05-19 Thread Claus Ibsen
Hi You configure this in the connection factory. Some information here: http://camel.apache.org/activemq So you should change it from tcp://localhost:61616 to the server name and port to use. On Tue, May 19, 2015 at 11:42 AM, Jonasty jonas.audena...@gmail.com wrote: I have following routes

Re: Apache Camel @Netflix

2015-04-14 Thread Claus Ibsen
Hi Great to hear that its not only the Chaos Monkeys that roam inside Netflix. But that its the Camel's that are trusted the most critical app, the one that takes our money and gives it to Netflix ;) On Tue, Apr 14, 2015 at 11:26 PM, Christian Müller christian.muel...@gmail.com wrote: Also

Re: Apache Camel-Mina2 ExchangePattern

2015-04-02 Thread Willem Jiang
If you just want to do the proxy, it could be quit simple to use the mina API dirtily, you just need to tell the response handler to send the message to channel which receive the request. -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog: http://willemjiang.blogspot.com

Re: Apache Camel-Mina2 ExchangePattern

2015-04-01 Thread Willem Jiang
Current Camel-Mina2 producer just wait for the response when the endpoint sync option is true, it doesn’t support to set the reply mode dynamically. BTW, can you tell if Message exchange pattern by just looking up the message content? -- Willem Jiang Red Hat, Inc. Web:

Re: Apache Camel-Mina2 ExchangePattern

2015-04-01 Thread itsavvy.ankur
Hi Willem, Thanks for your response. I can check the message body for the two command headers that just need to be written out but not expect a reply. I think the underlying implementation for Mina2Producer will block my use case. I cannot do sync=false and with sync=true the Mina2Producer

Re: Apache Camel decodes HTTP query params and httpclient fails with Invalid query exception

2015-03-31 Thread Claus Ibsen
Hi I logged a ticket https://issues.apache.org/jira/browse/CAMEL-8578 On Mon, Mar 30, 2015 at 10:58 AM, Claus Ibsen claus.ib...@gmail.com wrote: Hi Yeah sounds like a little bug. You are welcome to log a JIRA. http://camel.apache.org/contributing.html On Thu, Mar 26, 2015 at 3:56 PM,

Re: Apache Camel and web services

2015-03-31 Thread Willem Jiang
It looks there are more than one version of CXF in your class patch, can you double check it? -- 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 March 30, 2015 at

Re: Apache Camel and web services

2015-03-31 Thread Willian Antunes
Jiang, this is not the case. I had posted my doubt in Stackoverflow and I updated with the solution. http://stackoverflow.com/questions/29276308/apache-camel-and-web-services There are no examples portraying this situation in the Apache Camel project website. It was difficult a little for a

Re: Apache Camel and web services

2015-03-31 Thread Willem Jiang
Thanks for the information, it’s time to polish the CXF related example to help user speed up with camel-cxf :) -- 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

Re: Apache Camel decodes HTTP query params and httpclient fails with Invalid query exception

2015-03-30 Thread Claus Ibsen
Hi Yeah sounds like a little bug. You are welcome to log a JIRA. http://camel.apache.org/contributing.html On Thu, Mar 26, 2015 at 3:56 PM, Liliana.Neagul liliana.iovanov...@gmail.com wrote: @Willem: Yes I tried to the parameter in Exchange.HTTP_QUERY header name. It has the same behavior.

Re: Apache Camel decodes HTTP query params and httpclient fails with Invalid query exception

2015-03-26 Thread Claus Ibsen
Hi What version of Camel do you use? On Thu, Mar 26, 2015 at 7:27 AM, Liliana.Neagul liliana.iovanov...@gmail.com wrote: Hi, I'm trying to send from a camel route an HTTP request using an encoded query parameter (for symbol euro €), and it seems that camel decode the parameter and sent it

Re: Apache Camel decodes HTTP query params and httpclient fails with Invalid query exception

2015-03-26 Thread Willem Jiang
Hi, Did you try to setup the query parameter with the header name of Exchange.HTTP_QUERY? -- 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 March 26, 2015 at

Re: Apache Camel decodes HTTP query params and httpclient fails with Invalid query exception

2015-03-26 Thread Liliana.Neagul
@Willem: Yes I tried to the parameter in Exchange.HTTP_QUERY header name. It has the same behavior. -- View this message in context: http://camel.465427.n5.nabble.com/Apache-Camel-decodes-HTTP-query-params-and-httpclient-fails-with-Invalid-query-exception-tp5764794p5764843.html Sent from the

Re: Apache Camel decodes HTTP query params and httpclient fails with Invalid query exception

2015-03-26 Thread Liliana.Neagul
I'm using apache-camel version 2.14.1 -- View this message in context: http://camel.465427.n5.nabble.com/Apache-Camel-decodes-HTTP-query-params-and-httpclient-fails-with-Invalid-query-exception-tp5764794p5764842.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Apache camel monitor activemq

2015-03-25 Thread Greg Autric
Hi Jonasty, You can intercept all incomming message via : http://camel.apache.org/intercept.html You can trace camel route via http://camel.apache.org/tracer.html Last but not least, you can connect via JMX to route statistics bean to retrieve some counter. The hawtio program can help you

Re: Apache camel monitor activemq

2015-03-25 Thread James Carman
Is it a Camel route that's consuming the messages eventually? If so, you can wiretap the messages off and log them if you want. http://camel.apache.org/wire-tap.html

Re: Apache camel monitor activemq

2015-03-25 Thread Greg Autric
component. Greg AUTRIC JBoss Middleware Consultant email : gautric __at__ redhat __dot__ com twitter : @gautric_io - Mail original - De: James Carman ja...@carmanconsulting.com À: users@camel.apache.org Envoyé: Mercredi 25 Mars 2015 17:51:57 Objet: Re: Apache camel

Re: Apache camel monitor activemq

2015-03-25 Thread James Carman
...@carmanconsulting.com À: users@camel.apache.org Envoyé: Mercredi 25 Mars 2015 17:51:57 Objet: Re: Apache camel monitor activemq Is it a Camel route that's consuming the messages eventually? If so, you can wiretap the messages off and log them if you want. http://camel.apache.org/wire-tap.html

Re: Apache Camel Base64 Encoding Issue: java.lang.NoSuchMethodError

2015-01-26 Thread Willem Jiang
It looks like you have different version of common codec in your class patch. Can you use “mvn dependency:tree” to check if there is a lower version of common codec is included in your class path. -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog: http://willemjiang.blogspot.com

Re: Apache Camel Base64 Encoding Issue: java.lang.NoSuchMethodError

2015-01-26 Thread yeandone
Hi, Willem. It seems there might be a different version of common codec in the class patch. In our QA server, there are many different projects installed and they share the same JVM\Classpath so it seems there may be another maven project is currently using a lower version of commons codec jar.

Re: Apache Camel Base64 Encoding Issue: java.lang.NoSuchMethodError

2015-01-25 Thread yeandone
Hi, Claus, Willem, and Camel Friends. Do you have any idea how to resolve the issue above? Any idea and help will be greatly appreciated. Thanks. Will -- View this message in context:

Re: Apache Camel access a Spring Bean which invokes a Stored Procedure , Below is a Screenshot of SpringXML-Config file that hits a Stored Procedure successfully and display results.What would be the

2015-01-20 Thread Claus Straube
Have a look at this: http://camel.apache.org/bean.html ... .to(bean:customerDataService) ... On Tue, Jan 20, 2015 at 8:03 PM, Vishnu Kumar vishnu.kumar...@gmail.com wrote: http://camel.465427.n5.nabble.com/file/n5761959/StackSp.jpg -- View this message in context:

Re: Apache Camel SFTP

2015-01-16 Thread Luciano Nunes
Hi Claus, thank you for your answer! Our FTP server is a corporate server, so it's not possible to change the connection timeout parameter. I resolved by another way. I created a temporary local folder to serve as intermediary location for the file, so the file is moved from FTP server into

Re: Apache Camel SFTP

2015-01-13 Thread Claus Ibsen
Hi Since you take 15 min to process the file, then try setting a higher session timeout on the FTP server. The keep alive checks are only in use when the ftp consumer is idle, not while it process a file. On Tue, Jan 13, 2015 at 9:39 PM, Luciano Nunes lnu...@gmail.com wrote: I am working in a

Re: Apache Camel Mina2 not receiving data using Socket

2014-12-11 Thread Thomas Termin
Hi, just tried the example route builder with mina2 (camel-2.14.0) and it works fine using telnet as client. telnet localhost 6789 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. hallo Bye hallo Connection closed by foreign host. Which camel version do you use? Can you

Re: Apache Camel Mina2 not receiving data using Socket

2014-12-11 Thread Thomas Termin
Hi, tried it also with your Socket Client and works als fine. Thomas On Thu, Dec 11, 2014 at 10:20 AM, Thomas Termin thomas.ter...@gmail.com wrote: Hi, just tried the example route builder with mina2 (camel-2.14.0) and it works fine using telnet as client. telnet localhost 6789 Trying

Re: Apache Camel Mina2 not receiving data using Socket

2014-12-10 Thread Thomas Termin
Hello, Since camel-mina2 all consumer(from) exchanges are InOut. This is different to camel-mina. Maybe it is related to that one. But actually you say just it does not work. But what exactly is not working? Thomas On Tue, Dec 9, 2014 at 10:33 AM, Saurabh Singhal earthonclo...@gmail.com wrote:

Re: Apache Camel Mina2 not receiving data using Socket

2014-12-10 Thread Thomas Termin
Hello, my answer was a bit confussing maybe. The first sentence is realted to your sync=false which will not work in camel-mina2. Btw. you should give camel-netty4 a try. Thomas On Wed, Dec 10, 2014 at 9:34 AM, Thomas Termin thomas.ter...@gmail.com wrote: Hello, Since camel-mina2 all

Re: Apache Camel Mina2 not receiving data using Socket

2014-12-10 Thread Saurabh Singhal
Hi Thanks for the reply. Basically when I send the data using a socket programming code as mentioned in the problem, it does not print the output. I even copied the from to code from Apache camel site as below: from(mina2:tcp://localhost:6789?sync=truetextline=true).process(new

Re: Apache Camel requestTimeout

2014-09-11 Thread Willem Jiang
requestTimeout means the timeout for waiting for a reply when using the InOut Exchange Pattern (in milliseconds). You can find more information about the requestTimeout option by looking it up in the camel-jms[1] wiki page. [1]https://camel.apache.org/jms -- Willem Jiang Red Hat, Inc. Web:

Re: Apache Camel timeout during finding data through a CustomProcessor

2014-09-09 Thread Claus Ibsen
Hi If you use JMS then the default timeout for request/reply is 20 sec. See the JMS docs http://camel.apache.org/jms On Tue, Sep 9, 2014 at 1:01 PM, rajiv.jain rajiv.j...@mjog.com wrote: Hi I seem to get timeout errors after 20 seconds. I have a custom processor the implements Processor. I

Re: Apache Camel timeout during finding data through a CustomProcessor

2014-09-09 Thread rajiv.jain
Ok. I would like to investigate why the code works perfectly well outside of Apache Camel and as soon as we use Apache Camel the DAO takes longer. I am sure this is an issue with Apache Camel? Maybe some thread is being blocked. -- View this message in context:

Re: Apache Camel v2.12 | CXF Component | Basic Authentication | Web Service

2014-09-06 Thread sayed_india
Hello, I am a newbie in Camel and need of some basic authentication for CXF SOAP and REST service. Added the shared code in route builder , but not getting authentication being cheked when accessing. Please share the complete code base . Thanks and Regards, Sayed -- View this message in

Re: Apache camel and kafka integration

2014-09-04 Thread Claus Ibsen
Hi No its available since Camel 2.13.0. I guess the documentation on that website is outdated. So some options is renamed or have another name. You should check the official docs http://camel.apache.org/kafka But the official docs need descriptions of the options. So anyone wanna help

Re: Apache camel and kafka integration

2014-09-03 Thread Willem Jiang
Hi, You may need to check out the code iployzos and build it yourself, as the patch[1] is not in the current Apache Camel trunk now. [1]https://issues.apache.org/jira/browse/CAMEL-7339 -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog: http://willemjiang.blogspot.com (English)

Re: Apache camel and kafka integration

2014-09-03 Thread umang
Oh, no other way to test? I thought kafka support is added in camel 2.13 On Thu, Sep 4, 2014 at 8:53 AM, Willem.Jiang [via Camel] ml-node+s465427n5756036...@n5.nabble.com wrote: Hi, You may need to check out the code iployzos and build it yourself, as the patch[1] is not in the current

Re: Apache camel and Adobe CQ5

2014-05-27 Thread Charles Moulliard
Your issue is not related to a camel problem but comes from the fact that you can't establish a session with your JCR server. Have you verified that your credentials are correct ? On Tue, May 27, 2014 at 8:06 AM, Manjushree manjushr...@virtusa.com wrote: I'm working on apache camel and adobe

Re: Apache camel and Adobe CQ5

2014-05-27 Thread Gregor Zurowski
Manjushree: Can you verify that you can access http://127.0.0.1:4502/crx/server by simply opening this location in your browser? You should see the CRX version and a list of available workspaces. Thanks, Gregor On Tue, May 27, 2014 at 2:06 AM, Manjushree manjushr...@virtusa.com wrote: I'm

Re: Apache camel and Adobe CQ5

2014-05-27 Thread Gregor Zurowski
After reviewing the stack trace you have posted, it looks as if you want to access the repository via WebDAV, but Jackrabbit is trying to use RMI over HTTP to connect to it. Jackrabbit uses a service provider approach to find an appropriate implementation for the javax.jcr.RepositoryFactory

Re: Apache Camel 2.13.1 released

2014-05-15 Thread Willem Jiang
Hi Claus, I can see the camel-jms-2.13.1.jar from here[1]. [1]http://central.maven.org/maven2/org/apache/camel/camel-jms/2.13.1/ -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog: http://willemjiang.blogspot.com (English) http://jnn.iteye.com (Chinese) Twitter: willemjiang

RE: Apache Camel 2.13.1 released

2014-05-14 Thread Siano, Stephan
Subject: Re: Apache Camel 2.13.1 released I’m sorry I made a silly copy past error. The first line should be changed to  The Camel community announces the immediate availability of the new major release Camel 2.13.1. This release contains a total of 74 fixes applied in the past 2 months

Re: Apache Camel 2.13.1 released

2014-05-14 Thread Claus Ibsen
Hi For some weird reason we get 404 errors downloading Camel 2.13.1 from Maven Central. But only for some of the components, such as camel-jms. Willem do you have any idea what that could be? Or maybe its an interim problem and the maven central works later? On Tue, May 13, 2014 at 4:45 PM,

Re: Apache Camel 2.13.1 released

2014-05-14 Thread Claus Ibsen
Hi Ah now it can be downloaded. I tried like one hour ago, but just wrote the email about it later. I guess it was some kind of temporary glitch. On Wed, May 14, 2014 at 5:19 PM, Willem Jiang willem.ji...@gmail.com wrote: Hi Claus, I can see the camel-jms-2.13.1.jar from here[1].

Re: Apache Camel 2.13.1 released

2014-05-14 Thread Alexandros Koufoudakis
Hello. I just checked. It is alright for camel-jms and camel-stream, which was mentioned in the very beginning. I can also find both of them in http://search.maven.org. Is it back to normal? On Wed, May 14, 2014 at 5:19 PM, Willem Jiang willem.ji...@gmail.comwrote: Hi Claus, I can see the

Re: Apache Camel 2.13.1 released

2014-05-13 Thread Willem Jiang
I’m sorry I made a silly copy past error. The first line should be changed to  The Camel community announces the immediate availability of the new major release Camel 2.13.1. This release contains a total of 74 fixes applied in the past 2 months by the community on the Camel 2.13.x maintenance

RE: Apache Camel vs Openadaptor

2014-04-22 Thread Francois LIOT
Hi, I used to work with Openadaptors, And I unfortunately confirm it is a dead project. Additionally, between OSGI revolution and hyper-activity around Apache camel project, Starting new project on Openadaptor today looks to me as a real non-sense those days. Vivia camel Cheers,

Re: Apache Camel vs Openadaptor

2014-04-22 Thread Christian Müller
https://www.ohloh.net/p/camel vs. https://www.ohloh.net/p/4367 In a Nutshell, Apache Camel... has had 19,744 commits made by 82 contributors representing 953,023 lines of code ... is mostly written in Java with an average number of source code comments ... has a well

Re: Apache camel : Multithreading in route

2014-03-22 Thread Claus Ibsen
Hi You can use the composed message processor eip, and enable parallel processing See the splitter only example at http://camel.apache.org/composed-message-processor.html On Fri, Mar 21, 2014 at 10:34 PM, Sona dhanashree2...@yahoo.co.in wrote: String processFiles=

Re: Apache camel : Multithreading in route

2014-03-22 Thread Sona
Hello, Just to give you a problem statement : 1. We have number of files each with millions of records at one location.We need to read those files and save data in database. 2. Once done update status in other table. Solution is already in place. But currently its taking more time. Hence we

Re: Apache Camel Training

2014-02-03 Thread Claus Ibsen
Hi You can contact the companies that offers commercial training with Camel http://camel.apache.org/commercial-camel-offerings.html On Mon, Feb 3, 2014 at 2:50 PM, Rosen Spasov rosenspa...@hotmail.com wrote: Hi, Is there any on-site or over-the-web Apache Camel training available apart from

Re: Apache camel guaranteed delivery - multiple endpoints

2014-02-03 Thread MichaelAtSAG
The question was not about how to filter out duplicates on the consumer. Our code already implements idempotentConsumer when the consumer cannot tolerate duplicates. The heart of the question is in preventing duplicates from being sent when using a guaranteed delivery pattern. -- View this

Re: Apache camel guaranteed delivery - multiple endpoints

2014-01-29 Thread boday
might take a look at the idempotent consumer pattern to filter duplicates...it can be used with a repository (hazelcast, file, etc) to survive servers restarts, etc http://camel.apache.org/idempotent-consumer.html MichaelAtSAG wrote All, Please provide best practices on supporting

Re: Apache Camel and Jboss FUSE IDE

2014-01-28 Thread gadido30
Thank You -- View this message in context: http://camel.465427.n5.nabble.com/Apache-Camel-and-Jboss-FUSE-IDE-tp5746328p5746538.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Apache Camel v2.12 | CXF Component | Basic Authentication | Web Service

2014-01-24 Thread Willem Jiang
FYI, I just add two new options (username, password)[1] to the CXF URI. You can setup URI for basic authentication information. [1]https://issues.apache.org/jira/browse/CAMEL-7145 -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog:

Re: Apache Camel and Jboss FUSE IDE

2014-01-23 Thread Claus Ibsen
Fuse IDE is just an Eclipse based editor. You can use it for any kind of Java development. It just has a graphical UI for editing Camel routes as well. To run Java applications you can use maven to start the JVM, which you eg can do for unit testing etc. Or use maven goals that can startup Camel

Re: Apache Camel v2.12 | CXF Component | Basic Authentication | Web Service

2014-01-23 Thread manchandap
Thanks Willem, As the CxfProducer is created during the camel context start the route, the cxfEndpoint’s property is not updated. That was my hunch, however i was not able to prove it concretely. I will try your suggestion of updating the property in Route Builder's configure method. Thanks

Re: Apache Camel v2.12 | CXF Component | Basic Authentication | Web Service

2014-01-23 Thread manchandap
Looking at the CXF Component Documentation http://camel.apache.org/cxf.html , I notice that two new options (username and password) for Basic Authentication have been added in 2.12.3. http://camel.465427.n5.nabble.com/file/n5746426/Untitled.png However, from the download, I am not able to

Re: Apache Camel v2.12 | CXF Component | Basic Authentication | Web Service

2014-01-23 Thread manchandap
Was able to get this working by adding the following code to the Route Builder. I am using Java DSL: MapString, Object properties = new HashMapString, Object(); AuthorizationPolicy authPolicy = new AuthorizationPolicy();

Re: Apache Camel and Jboss FUSE IDE

2014-01-22 Thread gadido30
Thank You Do I need to Install both Eclipse and Maven? Do I need to use servicemix? I found some blog about, but I am not sure its updated: http://shoosthuizen-integration.blogspot.co.il/2011/02/beginners-guide-to-apache-camel-with_28.html Gadi -- View this message in context:

Re: Apache Camel and Jboss FUSE IDE

2014-01-22 Thread Sanjay Bhattacharya
If you use Fuse IDE, you do not need to install Eclipse and configure Maven plugin on top of it. It's done for you. You can use either ServiceMix or Red Hat JBoss Fuse runtime to deploy your routes. Your routes can also be run without deploying it to an OSGI container. You can use Spring to

Re: Apache Camel and Jboss FUSE IDE

2014-01-22 Thread gadido30
Thank You, sorry about my newbie question , I still don't know what to do: Do I need to run ActiveMQ with Camel Core and then add Maven Project with camel and activemq project? I will be glad to know what should I run for using Fuse IDE + Camel + ActiveMQ Gadi -- View this message in

Re: Apache Camel v2.12 | CXF Component | Basic Authentication | Web Service

2014-01-21 Thread Willem Jiang
Hi, If you set the cxfEndpoint property in a processor, it’s a setting of runtime. As the CxfProducer is created during the camel context start the route, the cxfEndpoint’s property is not updated. My suggestion is you set the cxfEndpoint property in the route builder configure method instead

RE: Apache Camel and Jboss FUSE IDE

2014-01-21 Thread Ravindra.Godbole
Once you install Fuse IDE, you can create Camel specific projects and also create Camel Context xml. -Original Message- From: gadido30 [mailto:gadid...@gmail.com] Sent: Wednesday, January 22, 2014 11:36 AM To: users@camel.apache.org Subject: Apache Camel and Jboss FUSE IDE Hi All, I

RE: Apache Camel and Jboss FUSE IDE

2014-01-21 Thread gadido30
Thank You, Ok , Then what should I load in AcriveMQ and Camel? How do I use what I save in Fuse IDE with ActiveMQ and Camel? Gadi -- View this message in context: http://camel.465427.n5.nabble.com/Apache-Camel-and-Jboss-FUSE-IDE-tp5746328p5746330.html Sent from the Camel - Users mailing list

Re: Apache Camel and Jboss FUSE IDE

2014-01-21 Thread Sanjay Bhattacharya
In FUSE IDE, you create a Camel project using the maven archetypes. The archetypes are like templates that set the basic project for you. They create a standard Maven project. So if you choose camel-archetype-activemq, it will setup all the requisite jars (for Camel and ActiveMQ) using Maven

Re: Apache Camel multithread processing

2013-12-16 Thread astorath
1. Altering the proc is not an option, 2. I need to create a transaction on per message basis. -- View this message in context: http://camel.465427.n5.nabble.com/Apache-Camel-multithread-processing-tp5741383p5744860.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Apache Camel multithread processing

2013-12-15 Thread astorath
Any updates? -- View this message in context: http://camel.465427.n5.nabble.com/Apache-Camel-multithread-processing-tp5741383p5744808.html Sent from the Camel - Users mailing list archive at Nabble.com.

<    1   2   3   4   >