Re: File aggregation and transaction.

2013-12-06 Thread Claus Ibsen
camel-jms using spring jms does not support batch for transactions. Its consuming a single message at a time. camel-sjms has batch support on the consumer. You may take a look at http://camel.apache.org/sjms On Fri, Dec 6, 2013 at 2:36 AM, kraythe . kray...@gmail.com wrote: I have a route that

Does resequencer add any headers to echange?

2013-12-06 Thread talk2patel86
Does resequencer add any headers to incomming echange to indicate timed out resequencing? -- View this message in context: http://camel.465427.n5.nabble.com/Does-resequencer-add-any-headers-to-echange-tp5744388.html Sent from the Camel - Users mailing list archive at Nabble.com.

Maven build failure

2013-12-06 Thread sbo13
Hi, When I try to build camel I get the following error: Failed to execute goal on project camel-kestrel: Could not resolve dependencies for project org.apache.camel:camel-kestrel:bundle:2.12.3-SNAPSHOT: Failure to find spy:spymemcached:jar:2.8.4 in ... Anyone else has this problem? Regards

Re: Maven build failure

2013-12-06 Thread Reji Mathews
You must be behind a proxy. U must enter proxy settings in maven configuration file so that it can download the dependencies Cheers Reji sbo13 sb...@gmx.de wrote: Hi, When I try to build camel I get the following error: Failed to execute goal on project camel-kestrel: Could not resolve

Re: Maven build failure

2013-12-06 Thread sbo13
If that were the case I wouldn't be able to download ANY dependency via maven not just spymemcached It is more something like: Maven Central hasn't the dependency, in fact there is no groupId 'spy' in the repository. Have a look at all artifacts named spymemcached:

Re: Maven build failure

2013-12-06 Thread Babak Vahdat
Hi that dependency of camel-kestrel is NOT resolved through the central maven repo of Apache itself but through a proprietary one: http://files.couchbase.com/maven2/spy/spymemcached/2.8.4/ See also: https://github.com/apache/camel/blob/master/components/camel-kestrel/pom.xml#L43 It could be

Re: Email Alerts Upon FTP Failure

2013-12-06 Thread David Karlsen
Have a look at: http://camel.apache.org/exception-clause.html or http://camel.apache.org/error-handler.html and use http://camel.apache.org/mail.html to send the mail. Good luck! 2013/12/5 funkymonk funkymon...@outlook.com Hello - I am brand new to Camel and I've got a handful of very basic

Re: Email Alerts Upon FTP Failure

2013-12-06 Thread Reji Mathews
Refer handler or dead letter in camel. U can give the URI to a email component from them David Karlsen davidkarl...@gmail.com wrote: Have a look at: http://camel.apache.org/exception-clause.html or http://camel.apache.org/error-handler.html and use http://camel.apache.org/mail.html to send the

Re: Email Alerts Upon FTP Failure

2013-12-06 Thread funkymonk
Thank you both for your response! I'm still somewhat confused because all of the documentation seems to reference the Java DSL or Spring DSL. I am just using the blueprint XML format for my routes. Perhaps I just do not understand the fundamental differences in how Camel can be used. Could

GsonDataFormat.java mashaling/unmarshaling problem

2013-12-06 Thread 차정호
Dear Camel developers. I have tested json marshaling / unmarshaling with gson library, and found there was charset assignment missing at org.apache.camel.component.gson.GsonDataFormat.java in Camel version 2.12.0 The marshal and unmarshal methods should create a stream writer or reader

Re: File aggregation and transaction.

2013-12-06 Thread kraythe .
I am actually using activemq component. - Robert On Friday, December 6, 2013, Claus Ibsen wrote: camel-jms using spring jms does not support batch for transactions. Its consuming a single message at a time. camel-sjms has batch support on the consumer. You may take a look at

ActiveMQ asyncConsumer problem

2013-12-06 Thread hollow1351
hi, I have a problem with concurrentConsumers when connecting to existing queue. when I'm starting consumer before sending messages to the queue everything works fine, but if I'm connecting to existing not empty queue camel goes consume existing messages sequentially one by one. I tried to use

Upgrade active-mq from 5.5 to 5.9

2013-12-06 Thread prabumc...@gmail.com
Hi all, I have upgraded my active-mq version from 5.5 to 5.9 When i start my server i am getting following error,So please kindly help me to solve this issue Exception : java.lang.LinkageError: Failed to link org/apache/activemq/camel/component/ActiveMQComponent -- View this message

Re: Spring AMQP Apache Camel Component Released

2013-12-06 Thread deckerego
Odd... I'll take a look. Would you be able to send along your entire URI string? -- View this message in context: http://camel.465427.n5.nabble.com/Spring-AMQP-Apache-Camel-Component-Released-tp5027785p5744408.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Spring AMQP Apache Camel Component Released

2013-12-06 Thread muthukumara...@gmail.com
Here is my routing / camelContext xmlns=http://camel.apache.org/schema/spring; route from uri=spring-amqp:test.general.topic:test.general.queue:test.general.queue?type=topicamp;autodelete=falseamp;durable=trueamp;acknowledgeMode=AUTO /

Re: camel-rabbitmq

2013-12-06 Thread muthukumara...@gmail.com
Thanks Willem -- View this message in context: http://camel.465427.n5.nabble.com/camel-rabbitmq-routing-issue-tp5744371p5744410.html Sent from the Camel - Users mailing list archive at Nabble.com.

Bindy Custom Timezone

2013-12-06 Thread Daneel Yaitskov
Hi, I need to unmarshall csv record to Pojo containing date file. The field has time with timezone different from default. @DateField has attribute pattern but I cannot find timezone one. So how to specify date field timezone? -- View this message in context:

Bindy Streaming Multile Rows

2013-12-06 Thread Daneel Yaitskov
Hi, I found 2 streaming solutions: body().tokenizer(\n) and from(stream:file?fileName=data/export-2013-10-24-all.csv) None off them support multile rows. Such as: 1234, first row 24533, next row Both solution act on low level before CSV. So it's not a surprise that they cannot cope

Re: GsonDataFormat.java mashaling/unmarshaling problem

2013-12-06 Thread Aki Yoshida
this issue has been fixed in 2.12.2 with https://issues.apache.org/jira/browse/CAMEL-6873 the charset name will be taken from the charset name property (Excahnge.CHARSET_NAME) of the exchange. regards, aki 2013/12/6 차정호 jh...@barunmo.com: Dear Camel developers. I have tested json

stupid pipeline question

2013-12-06 Thread tapdur
hi all when i use a route with cxfEndpoint like this it works fine route from uri=cxf:bean:routerEndpoint / to uri=cxf:bean:CIM-BIE-MOCK / /route the to response is well returned in the grom response. however, if i want to insert a mapper before and/or after the to uri i lost the body, why

Re: Passing multiple parameters to CXF endpoint

2013-12-06 Thread trilochan237
Hi Willem, If i use the client program example from camel cxf examples and set the content type in HTTPClientPolicy, but could you please tell me how to set the same in Exchange type when calling the webservice by creating a CXFendpoint *CLient Program:-* JaxWsProxyFactoryBean factory = new

CXF EndPoint Vs Processor

2013-12-06 Thread trilochan237
Hi, Can someone tell me which is the best approach for calling an external webservice? After going through the examples from camel website i got to know that a call can be made from the processor and also by creating a CXFEndpoint. -- View this message in context: