Re: Manufacturer's Information on IT Security

2014-02-19 Thread Hadrian Zbarcea
Hi Gerlinde, You can find many of the answers on the Apache Camel site [1] and the ASF site in general. The Camel project abides by the project governance and software release rules [2] established by the foundation [3] and applicable to all projects. That said please keep in mind that

Re: where to download apache camel 2.9 ?

2014-02-19 Thread Hadrian Zbarcea
Claus meant to follow the Download Archives link on that page that shows the older releases [1]. I hope this helps, Hadrian [1] http://camel.apache.org/download-archives.html On 02/19/2014 09:39 AM, Claus Ibsen wrote: Hi See the older releases at http://camel.apache.org/download On Wed,

Re: where to download apache camel 2.9 ?

2014-02-19 Thread Hadrian Zbarcea
My bad. The release notes still point to the mirrors which do not include archives per agreements with ASF. The archives can be found on the ASF archive site [1] (for all projects not just camel): Sorry for the confusion, Hadrian [1] https://archive.apache.org/dist/camel/apache-camel/ On

Re: Basic from fp to file route: Need clarification. 1M Thanks.

2014-02-04 Thread Hadrian Zbarcea
Please rephrase your question. You cannot have 2 from's in a route. A from sets up a consumer which is kinda the listener for messages to be processed on the route. The ftp consumer continuously looks for new files to be processed on a ftp server, but depending on the application you may have

Re: Basic from fp to file route: Need clarification. 1M Thanks.

2014-02-04 Thread Hadrian Zbarcea
Routes don't start when the context starts, *by default* they start when the route starts because of the default value of the 'autoStartup' attribute. One quick solution would be to autostart=false [1] and use the message to direct to start your ftp route at appropriate times. You can self

Re: [Feature Enhancement] Camel body size

2013-11-23 Thread Hadrian Zbarcea
I wonder how you'd implement that in the general case. A pojo, array of pojos, do you include the size of the headers, are headers pojos, arrays of pojos... What about properties... Hadrian On 11/22/2013 03:57 PM, Matt Pavlovich wrote: Hello- I opened a ticket to request adding a feature

Re: AW: [Feature Enhancement] Camel body size

2013-11-23 Thread Hadrian Zbarcea
with the value and use it in other expressions for processing (content based routing may be a typical case). My $0.02, Hadrian On 11/23/2013 03:20 PM, Jan Matèrne (jhm) wrote: Store the object in a byte array and count the bytes? Jan -Ursprüngliche Nachricht- Von: Hadrian Zbarcea

Re: Exclude Camel from Antivirus Scan?

2013-11-12 Thread Hadrian Zbarcea
Hi Jack, This is a Windows specific issue (as other OSes do not lock files). That aside, you have a conflict between two tools that perform automatic processing of files. Unless you manage to provide some sort of synchronization you cannot avoid the problem. One way is to eliminate one of

Re: HL7 v3

2013-09-12 Thread Hadrian Zbarcea
Ed and I had a presentation at OSEHRA last week showing (among other things) how to use HL7 with Mirth and Camel. It's a bit tricky. As other said the camel-hl7 component is based on the hapi api with supports the version 2.x of HL7 wich is an EDI format, not xml. Afaik, most of the industry

Re: clone camel 2.11.x branch

2013-06-27 Thread Hadrian Zbarcea
Clone the project then switch to any branch you want: git clone g...@github.com:apache/camel.git git branch -a [...] - displays all branches git checkout camel-2.11.x For more info you can take a look at the ASF pages about git [1]. Hadrian [1] http://git.apache.org/ On 06/27/2013 08:43

Re: camel-smpp in trx mode

2013-06-27 Thread Hadrian Zbarcea
The thorny issue with the TRX mode is that it uses a conversational pattern, not really quite supported/modeled well. Since the Endpoint is the one creating the Producers and Consumers, it could be used to share the conversation state. I believe a cleaner solution would be to model a

Re: How to start a process with Camel?

2013-06-21 Thread Hadrian Zbarcea
Sean, I presented at CamelOne last week on how to handle exactly this kind of scenarios with Camel and claimcheck. The code and slides are available on github [1]. Please take a look and let me know if you have any questions. Cheers, Hadrian [1] https://github.com/hzbarcea/camelone On

Re: How to start a process with Camel?

2013-06-21 Thread Hadrian Zbarcea
: Thanks for the response! I'll look now and let you know On Fri, Jun 21, 2013 at 12:24 PM, Hadrian Zbarcea hzbar...@gmail.comwrote: Sean, I presented at CamelOne last week on how to handle exactly this kind of scenarios with Camel and claimcheck. The code and slides are available on github [1

Re: How to start a process with Camel?

2013-06-21 Thread Hadrian Zbarcea
for the response! I'll look now and let you know On Fri, Jun 21, 2013 at 12:24 PM, Hadrian Zbarcea hzbar...@gmail.comwrote: Sean, I presented at CamelOne last week on how to handle exactly this kind of scenarios with Camel and claimcheck. The code and slides are available on github [1]. Please take a look

Re: confirm unsubscribe from users@camel.apache.org

2013-06-08 Thread Hadrian Zbarcea
Actually it's users-unsubscr...@camel.apache.org. On 06/08/2013 05:44 AM, Christian Müller wrote: If you want to unsubscribe from this list, you have to send the message to users-subscr...@camel.apache.org Sent from a mobile device Am 03.06.2013 22:02 schrieb Lars Fischer

Re: Serial in 2.11

2013-05-29 Thread Hadrian Zbarcea
I am not sure how much netty could help you with that, as it targets tcp/ip communications (i.e a Channel), although the site claims that one could target serial/usb or other interfaces. One bet would be using java libraries for serial communication [1] [2], but they are (l)gpl licensed and

Re: CamelOne

2013-05-29 Thread Hadrian Zbarcea
I'll be landing late in the evening on Sun, around 8:30pm. I'll step by, but I may be too late. Cheers, Hadrian On 05/27/2013 03:53 PM, Christian Müller wrote: CamelOne 2013 (http://camelone.org/) is in about two weeks! Who will be there? I want to meet as many Camel

Re: HL7 v3

2013-05-21 Thread Hadrian Zbarcea
It v2 indeed. HL7 v3 is xml, therefore there are quite a few ways to deal with it in Camel. There are no pojos though modeling rim v3 and no marshaling/unmarshaling from hl7 v3 to pojos. I hope this helps, Hadrian On 05/21/2013 05:00 PM, RTernier wrote: I believe it's HL7v2; similar to

Re: Why do Camel core methods still throw Checked Exceptions (everyone agrees they're 'bad' now, right?)

2013-05-15 Thread Hadrian Zbarcea
FWIW, +1 Pat (my personal opinion). My explanation, legacy stuff. Hopefully it'll be addressed in 3.0. Backward compatibility will really be a serious issue. Hadrian On 05/15/2013 01:57 PM, pmcb55 wrote: Hi Christian, Thanks for the reply. Basically the issue with Camel throwing Checked

Re: Sftp bug in Camel 2.11.0

2013-05-03 Thread Hadrian Zbarcea
Bengt, many thanks for reporting this. Either svn or git tells you pretty quickly how that code got there (git blame). Do you mind raising a jira for this embarrassing bug? If you want to contribute a patch it'd be highly appreciated. That aside, I'll look into it in the afternoon. I'll need

Re: OT: Aggregation of billable data?

2013-04-25 Thread Hadrian Zbarcea
Hi James, Very good and interesting use case. You could use BPM, indeed, but I think it's way to heavy weight for what you need to do. CEP would be another idea, but I digress. Wire-tap won't help you, I believe Willem misunderstood your question. So here's what I think: you have your

Re: Camel Splunk component

2013-04-08 Thread Hadrian Zbarcea
Hi Preben, Interesting proposal. I couldn't find the licensing terms for splunk. Aside from the fact that it's not in the central maven repo, the version from the springsource repo doesn't point to a license and it's not clear who built it and from what sources. Do you know know anything

Re: Camel Splunk component

2013-04-08 Thread Hadrian Zbarcea
Awesome. I do see the value of a splunk component. Ideally, to make splunk a good camel citizen it'd be great to have it released in maven central and make it OSGi friendly (not sure if the latter is already done). As this would serve well the splunk community, I assume you (we) could work

Re: How to know if a component is InOnly by default

2013-03-07 Thread Hadrian Zbarcea
The route MEP is ignored by almost all the components and almost useless. So you can get it from the exchange, but it won't help you much. You need to read the doc for the components you're using and understand what they do given the uri configuration you used. My $0.02, Hadrian On

Re: Opposite of split

2013-03-04 Thread Hadrian Zbarcea
Yes, that's slow. Would it be possible to do a bit of profiling and provide some metrics to identify where the bottleneck is? Hadrian On 03/04/2013 03:59 PM, Jean Francois LE BESCONT wrote: I have try to us BodyInAggregatingStrategy in [] : .aggregate(header(CamelFileName), new

Re: camel processor in InOut to send 2 replies

2013-02-26 Thread Hadrian Zbarcea
Your question is not very clear, I could interpret it in a few ways. Your example seems to indicate an in-only, no reply pattern. Firstly, you cannot do what you need with a request/reply pattern, so you certainly have something else. Since you use jms, you probably use a reply queue [1].

Re: What is the difference between the two jasypt libs?

2013-02-25 Thread Hadrian Zbarcea
The camel-jasypt library is a wrapper of the org.jasyp library that allows it to be used for securing secrets on camel routes. It is not a port nor a wrapper of jasypt. I hope this helps, Hadrian On 02/25/2013 03:33 PM, Pulkit Singhal wrote: Hello, There are two jasypt libraries available

Re: Large file processing with Apache Camel

2013-02-22 Thread Hadrian Zbarcea
Last year at ApacheCon, I showed a demo [1] related to processing a file in parallel in multiple threads (in 'splits' - term borrowed from hdfs - of a configurable size). I used a relatively small csv file for my demo, not xml, but it works exactly the same with xml. Take a look at it, I

Re: Large file processing with Apache Camel

2013-02-22 Thread Hadrian Zbarcea
Cristisor, Take a look at the demo I mentioned. Run it (as easy as `mvn install`), look at the logs to see the tread allocation. That should answer your #1. For #2, best is to try both and measure. For #3, take a look at the recipient list pattern [1]. I hope this helps, Hadrian [1]

Re: Camel direct component

2013-02-05 Thread Hadrian Zbarcea
Hi Jothi, A direct: endpoint provides a synchronous, in memory call which is probably the simplest, most basic way in which two endpoints could communicate. In real life endpoints almost never share the memory space, right? So the answer to your question revolves around those usecases where

Re: Google Plus - Apache Group

2013-02-01 Thread Hadrian Zbarcea
Rob, just drop it. You know very well James is right. A similar complaint was made just a few days ago about Fuse's behavior. This is nothing new, there is a long list of abuses from Fuse over quite a few years. James, I would not include RedHat here. RedHat employees are involved in other

Re: Answer to a problem

2013-01-27 Thread Hadrian Zbarcea
For future reference, the right list for such questions is users@camel.apache.org. In your particular case try to either get net connectivity or: mvn install -Dfastinstall from the root directory of the project (two directories up from where you are). After you do this once, subsequent mvn

Re: [ANN] hawtio: a new lightweight HTML5 console for Apache Camel, ActiveMQ, JMX, OSGi Fuse Fabric

2013-01-27 Thread Hadrian Zbarcea
Well, I think I do understand the issue Lukasz is bringing up. I am blaming his ESL on not sending the message across very well. One thing would help (I think) is to move the traffic related to hawt.io on the hawt.io site, off the @camel lists. (Same goes for the camel-extra project.)

Re: [ANN] hawtio: a new lightweight HTML5 console for Apache Camel, ActiveMQ, JMX, OSGi Fuse Fabric

2013-01-25 Thread Hadrian Zbarcea
I personally find the tone of this exchange very distasteful and I would much appreciate you continuing it on other media channels than the @camel user lists. FWIW, Lukasz made some valid points. However, you saw a need for a new project, created it, great. Hawt.io is nice, please continue to

Re: [ANN] hawtio: a new lightweight HTML5 console for Apache Camel, ActiveMQ, JMX, OSGi Fuse Fabric

2013-01-25 Thread Hadrian Zbarcea
This is one more reason why the hawt.io discussions should take place in the hawt.io communities. Not here. Thanks, Hadrian On 01/25/2013 08:08 AM, Guillaume Nodet wrote: Lukasz, I'm sorry you're angry, but you're missing the point that the Karaf web console is bound to OSGi even if it can be

Re: [ANN] hawtio: a new lightweight HTML5 console for Apache Camel, ActiveMQ, JMX, OSGi Fuse Fabric

2013-01-25 Thread Hadrian Zbarcea
, as it is for all other projects. I already forwarded the email to the karaf community and other projects may be involved too. On Fri, Jan 25, 2013 at 4:24 PM, Hadrian Zbarcea hzbar...@gmail.com wrote: This is one more reason why the hawt.io discussions should take place in the hawt.io communities

Re: Persisting route details..

2013-01-25 Thread Hadrian Zbarcea
Camel currently is essentially stateless. You can achieve what you want, but you'd have to implement it yourself. Something along the lines you mentioned. We are however planning to have support for persistence at a core level in 3.0. Christian Ohr added some details about that on the 3.0

Re: [CAMEL-3.0] Start moving forward

2013-01-17 Thread Hadrian Zbarcea
Christian, Thanks for taking the initiative and restarting the process for Camel 3.0. The good news imho is that we're under no pressure and we can take the time to get it right. I like your proposal of effectively splitting the camel-3.0-roadmap page into multiple pages. If I understand

Re: routing messages to two environments

2012-12-13 Thread Hadrian Zbarcea
That's what a wiretap [1] is for. When you place a wire tap on the route at your spot of interest, you get an exact copy of the message to a another endpoint (which could be another route, a jms endpoint, log, etc, that's besides the point). That's where you place the logic of moving the

Re: I created a basic file-unzip camel component...

2012-12-07 Thread Hadrian Zbarcea
It does work with files, i.e. messages are the file content. There is also a camel-exec that is easy to use. Unfortunately I don't think your contribution would be a good addition to the camel distro. Thanks for using Camel though and we appreciate your contribution. Hadrian On 12/07/2012

Re: Using Camel with Java DSL and minimal Spring

2012-11-19 Thread Hadrian Zbarcea
Do you have any stack trace? Did you setup the jpa persistence layer properly? That's the bit that is mandatory and in our example is done via spring (iirc). Hadrian On 11/19/2012 02:03 PM, Jay Walters wrote: I am trying to understand if it is feasible to configure routes and things at

Re: SFTP readLock option

2012-10-22 Thread Hadrian Zbarcea
Assuming I read your question correctly, the default file process strategy will be a GenericFileNoOpProcessStrategyFTPFile which does not need a readLock (typically it won't be set). See [1]. Hadrian [1]

Re: Ampersand in URI query parameter not working (CAMEL-4857 doesn't fix)

2012-10-11 Thread Hadrian Zbarcea
I will try to take a look at your example later today. The double encoding issue was there from the beginning of camel. Due to the limited number of components at the time, we didn't see the edge cases very well, and later on we only worked around the once we encountered. Realistically, a

Re: ActiveMQ, Camel and Spring

2012-09-19 Thread Hadrian Zbarcea
Actually activemq-camel and camel-exec don't work well together because of a TypeConverter in activemq-camel. It does work with with camel-jms though, I'd recommend using that. Cheers, Hadrian On 09/19/2012 10:32 AM, Gert de Wit wrote: Hi all, Would like to access the ActiveMQ

Re: Camel vs BPEL

2012-09-18 Thread Hadrian Zbarcea
Finally somebody who pointed out the real difference. Thanks Bruno. Camel is stateless, WS-BPEL is stateful! If you need to deal with state, which is usually the case, Camel will only partially help. You'll have to deal with persistence and correlation yourself. For simple projects, it's next

Re: Camel vs BPEL

2012-09-18 Thread Hadrian Zbarcea
Mostly a social issue, but I totally agree. Also keep in mind when you compare options that Camel is a framework, not a product and BPEL in this context actually means not the spec, but a specific box-wrapped interpretation of it sold as a product. $0.02 + tax Hadrian On 09/14/2012 09:55

Re: URISupport.normalizeUri different result from camel 2.8.2 to 2.10.0

2012-08-06 Thread Hadrian Zbarcea
Would using properties be acceptable as a solution (including camel-jasypt maybe if you don't want the pwd in clear)? Hadrian On 08/06/2012 07:34 AM, Marco Crivellaro wrote: hekonsek wrote Ok. The good news is that I got a workaround for you :) . Create the component without the FTP

Re: Simple camel app for the Olympics

2012-08-03 Thread Hadrian Zbarcea
Awesome :) Hadrian On 08/03/2012 12:52 PM, Bilgin Ibryam wrote: Hi all, Based on camel-twitter example I created a simple Camel application that displays twitter images about London 2012 Olympics. You can see the app running here [1] or read my post about it [2] :) [1]

Re: Dynamic generation of Camel routes

2012-07-18 Thread Hadrian Zbarcea
From what you describe, I would create a DSL for that. Hadrian On 07/18/2012 05:58 PM, gilboy wrote: Hi I am working on an application were we need to build camel routes dynamically based on route configuration rules stored in a remote configuration store. My application makes a call to the

Re: Dynamic generation of Camel routes

2012-07-18 Thread Hadrian Zbarcea
The routing slip is a dynamic router that allows one to determine at runtime to what endpoints messages should be sent. It got nothing to do with the process of creating routes. The 2 choices are to either hardcode the logic described or the more elegant solution imo of defining a small dsl

Re: Purge VM queued messages

2012-06-29 Thread Hadrian Zbarcea
All BrowsableEndpoint(s) are browsable, including the SedaEndpoints used by the VM component. Hadrian On 06/29/2012 06:06 PM, Bruno Borges wrote: Is it possible to access the messages queued in a VM endpoint? *Bruno Borges* (21) 7672-7099 *www.brunoborges.com*

Re: Camel 2.6.0

2012-06-04 Thread Hadrian Zbarcea
Apache mirrors only serve actively supported versions. Hadrian On 06/04/2012 04:50 AM, domiko wrote: Hey Claus, Thanks for the link. I was going through this link : http://www.apache.org/dyn/closer.cgi And apparently the mirrors only serve the last 3 versions. Thanks again. rgds, Dominique.

Re: splitter without aggregator?

2012-05-25 Thread Hadrian Zbarcea
Hi Tyler, Yes, you can use the splitter without an aggregator. I would venture to say that this is actually the default case. An aggregation strategy with the splitter will generate one exchange in the end (and yes, there is a default strategy and also there is no way around it). However if

Re: Camel EAI patterns vs. BPEL processes

2012-05-25 Thread Hadrian Zbarcea
One of my previous answers on the topic may help: http://camel.465427.n5.nabble.com/Orchestration-with-Camel-td5587114.html I hope this helps, Hadrian On 05/25/2012 03:16 PM, Danny wrote: How to choose? I'll use orchestration as a generic term below that is synonymous with route in camel and

Re: Taking a snapshot of an exchange...

2012-05-24 Thread Hadrian Zbarcea
Hi James, I had a similar need not long ago and two things are needed. One is a wiretap, to do the logging while processing goes uninterrupted on the main flow. The second is directly related to your question. I ended up using just the in Message, thus losing the properties, but that was

Re: camel-jsch in sink mode for one time copy from a remote host using SCP

2012-05-07 Thread Hadrian Zbarcea
. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: scp and private key verification.

2012-05-03 Thread Hadrian Zbarcea
-tp5682279.html Sent from the Camel - Users mailing list archive at Nabble.com. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: [ANNOUNCE] Apache Camel 2.9.2 Released

2012-05-03 Thread Hadrian Zbarcea
-camel-2.9.2-src.zip.asc After I found the right asc file, Signature is good. Greg -- View this message in context: http://camel.465427.n5.nabble.com/ANNOUNCE-Apache-Camel-2-9-2-Released-tp5649281p5684492.html Sent from the Camel - Users mailing list archive at Nabble.com. -- Hadrian Zbarcea

Re: camel-jsch in sink mode for one time copy from a remote host using SCP

2012-05-02 Thread Hadrian Zbarcea
at Nabble.com. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: Handling unsuccessful Session.send in Quickfix component

2012-05-02 Thread Hadrian Zbarcea
the Camel - Users mailing list archive at Nabble.com. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: [ANNOUNCE] Apache Camel 2.9.2 Released

2012-04-19 Thread Hadrian Zbarcea
://camel.apache.org/camel-292-release.html -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: RDF Integration

2012-04-07 Thread Hadrian Zbarcea
-tp5619733p5624286.html Sent from the Camel - Users mailing list archive at Nabble.com. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: RDF Integration

2012-04-05 Thread Hadrian Zbarcea
docs? Thanks Jon -- View this message in context: http://camel.465427.n5.nabble.com/RDF-Integration-tp5619733p5619733.html Sent from the Camel - Users mailing list archive at Nabble.com. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http

Re: RDF Integration

2012-04-05 Thread Hadrian Zbarcea
at Nabble.com. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/ -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

).Re: Add property to Route (not Exchange)

2012-04-04 Thread Hadrian Zbarcea
-- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: Can Camel routes fail independently inside a single CamelContext?

2012-04-02 Thread Hadrian Zbarcea
.n5.nabble.com/Can-Camel-routes-fail-independently-inside-a-single-CamelContext-tp5613034p5613034.html Sent from the Camel - Users mailing list archive at Nabble.com. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: Orchestration with Camel

2012-03-22 Thread Hadrian Zbarcea
. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: Do Apache Camel needs a SAP integration?

2012-03-15 Thread Hadrian Zbarcea
) - -- Christian Schneider http://www.liquid-reality.de Open Source Architect Talend Application Integration Division http://www.talend.com -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: Do Apache Camel needs a SAP integration?

2012-03-15 Thread Hadrian Zbarcea
://www.talend.com -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: Question on the proper usage of Camel

2012-02-12 Thread Hadrian Zbarcea
, received 0. Then you have to analyze the log to find what was the real reason. Also, Camel waiting for the messages, make the tests much slower, because time is lost on this waiting. Thoughts? Recommendations? What do we do wrong? -- Hadrian Zbarcea Principal Software Architect Talend, Inc

Re: Choich() with multiple Routing EIP

2012-02-09 Thread Hadrian Zbarcea
() together? Or is there any other way to accomplish this Thanks for all your help Regards, Christos -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: Verification (crypto:verify) does not remove CamelDigitalSignature header

2012-02-08 Thread Hadrian Zbarcea
in DigitalSignatureProcessor, shouldn't it? Regards, Dominik -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: error executing mvn exec:java

2012-02-07 Thread Hadrian Zbarcea
-- View this message in context: http://camel.465427.n5.nabble.com/error-executing-mvn-exec-java-tp5463930p5463930.html Sent from the Camel - Users mailing list archive at Nabble.com. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http

Re: File consumer - waiting for it to start

2012-02-03 Thread Hadrian Zbarcea
.n5.nabble.com/File-consumer-waiting-for-it-to-start-tp5455062p5455435.html Sent from the Camel - Users mailing list archive at Nabble.com. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: FutureT future = camel.asyncRequestBody(..) times out after 30 sec

2012-02-03 Thread Hadrian Zbarcea
: 3 millis. Exchange[Message: DO] Are there any other parameters that I need to set if I want to wait for response message longer than 30 sec ? Thanks, Dragisa Krsmanovic -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: FutureT future = camel.asyncRequestBody(..) times out after 30 sec

2012-02-03 Thread Hadrian Zbarcea
: 3 millis. Exchange[Message: DO] Are there any other parameters that I need to set if I want to wait for response message longer than 30 sec ? Thanks, Dragisa Krsmanovic -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com

Re: Apache Camel applicability

2012-01-27 Thread Hadrian Zbarcea
and returns result to A. Is the above scenario is normal for the use of apache camel? Thank you. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: Component Design - SMSLib

2012-01-27 Thread Hadrian Zbarcea
that I should obviously be using for my Component, Endpoint, Consumer or Producer implementations? * is there anyone else interested in this component who could cast an eye over the code? -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http

Re: Component Design - SMSLib

2012-01-26 Thread Hadrian Zbarcea
or Producer implementations? * is there anyone else interested in this component who could cast an eye over the code? -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: Camel Infinispan

2012-01-25 Thread Hadrian Zbarcea
://www.jboss.org/infinispan/license.html On 01/25/2012 11:09 AM, Apache wrote: Hi, Was wondering if there is a camel component someplace for the infinispan cache ? -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: Do Apache Camel needs a SAP integration?

2012-01-14 Thread Hadrian Zbarcea
-integration Best, Christian -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: @Bean annotation in REST service definition

2012-01-12 Thread Hadrian Zbarcea
to manage this. Kindest regards -- View this message in context: http://camel.465427.n5.nabble.com/Bean-annotation-in-REST-service-definition-tp5140117p5140117.html Sent from the Camel - Users mailing list archive at Nabble.com. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http

Re: No consumers available on endpoint exception

2012-01-12 Thread Hadrian Zbarcea
- -- View this message in context: http://camel.465427.n5.nabble.com/No-consumers-available-on-endpoint-exception-tp5138202p5140082.html Sent from the Camel - Users mailing list archive at Nabble.com. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http

Re: SpringCamelContext afterPropertiesSet never called

2012-01-11 Thread Hadrian Zbarcea
-7493 -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: More complicated scenario for camel-bam

2012-01-10 Thread Hadrian Zbarcea
, there is no human tasks, only service calls and camel logic. Łukasz Dywicki -- Code-House Krasiczyńska 3/80 03-379 Warszawa -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: Please explain better in-out

2012-01-04 Thread Hadrian Zbarcea
. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: Way to find out if a message has reached all the destinationtions?

2011-12-05 Thread Hadrian Zbarcea
in reliance upon, this information by persons or entities other than the intended recipient is prohibited. If you received this in error, please contact the sender and delete the material from any computer.*** -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http

Re: Passing SEDA instance to Bean

2011-11-30 Thread Hadrian Zbarcea
. Looking to try it out today. -- View this message in context: http://camel.465427.n5.nabble.com/Passing-SEDA-instance-to-Bean-tp5032985p5035461.html Sent from the Camel - Users mailing list archive at Nabble.com. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http

Re: URGENT help please

2011-11-26 Thread Hadrian Zbarcea
://davsclaus.blogspot.com/ Author of Camel in Action: http://www.manning.com/ibsen/ -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: how to call route from other route?

2011-11-23 Thread Hadrian Zbarcea
: http://camel.465427.n5.nabble.com/how-to-call-route-from-other-route-tp4913610p4916399.html Sent from the Camel - Users mailing list archive at Nabble.com. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: CAMEL is throwing error

2011-11-22 Thread Hadrian Zbarcea
. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: CAMEL is throwing error

2011-11-22 Thread Hadrian Zbarcea
? -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: invoking bean from CAMEL route

2011-11-21 Thread Hadrian Zbarcea
in context: http://camel.465427.n5.nabble.com/invoking-bean-from-CAMEL-route-tp5008230p5008230.html Sent from the Camel - Users mailing list archive at Nabble.com. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: Remotely pulling messages using CAMEL

2011-11-21 Thread Hadrian Zbarcea
-- View this message in context: http://camel.465427.n5.nabble.com/Remotely-pulling-messages-using-CAMEL-tp4971149p5011235.html Sent from the Camel - Users mailing list archive at Nabble.com. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http

Re: No consumers available on endpoint: Endpoint[direct://start]

2011-11-21 Thread Hadrian Zbarcea
in context: http://camel.465427.n5.nabble.com/No-consumers-available-on-endpoint-Endpoint-direct-start-tp5011742p5011742.html Sent from the Camel - Users mailing list archive at Nabble.com. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: Remotely pulling messages using CAMEL

2011-11-17 Thread Hadrian Zbarcea
Hi, Please find a fairly complete example in my github repo [1]. To run it, just clone it and run mvn:install. You can open it in your IDE of choice and play with it. I did not yet explain in the readme why it is implemented that way and I intend to do it in the next couple of days, but the

Re: Design Question

2011-11-15 Thread Hadrian Zbarcea
Yes, that's what Camel is for. But I don't quite get the each one of them is running in its own jvm part. Do you think that scales? Hadrian On 11/15/2011 12:05 PM, msnathan wrote: Hi, I am planning to use Camel as a Composite Service Mediator/Routing Engine. All my back-end

Re: Remotely pulling messages using CAMEL

2011-11-15 Thread Hadrian Zbarcea
I am putting together an example for you, I should be done tomorrow. There is enough information now to point you in the right direction (hopefully). Hadrian On 11/15/2011 09:40 AM, newbiee wrote: Thank you for the response. Below are some more clarifications and my questions: Good,

Re: Remotely pulling messages using CAMEL

2011-11-14 Thread Hadrian Zbarcea
From all this conversation there seems to be a bit of disconnect between the questions and the answers :). It looks to me that you are making some assumptions about how camel is used and the answers don't address that. The reason is that using Camel is much easier than I believe you assume.

Re: Remotely pulling messages using CAMEL

2011-11-14 Thread Hadrian Zbarcea
Ok, so we made a bit of progress. More answers inline. Hadrian On 11/14/2011 09:51 PM, newbiee wrote: Thank you very much to all for your time and valuable feedback. Let me answer the questions that have been asked: Q. does the server know in advance the IP address of each digi device? Are

  1   2   3   >