Re: read file from classpath

2014-04-03 Thread Hadrian Zbarcea
Jin, Is the file in a different bundle? You have to add your resource bundle as a dependency. Hadrian On Thursday 03 April 2014 01:07:53 chaij wrote: > Is possible to read file using Camel from classpath? This file lives in the > bundle. > > I have a xml file and want to read it in using file

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 02

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, F

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 Camel

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 st

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 o

Re: AW: [Feature Enhancement] Camel body size

2013-11-23 Thread Hadrian Zbarcea
eader of choice 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:

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 fo

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 the

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 i

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 Conversat

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

Re: How to start a process with Camel?

2013-06-21 Thread Hadrian Zbarcea
look now and let you know On Fri, Jun 21, 2013 at 12:24 PM, Hadrian Zbarcea wrote: 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

Re: How to start a process with Camel?

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

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 06/2

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" : Excerpts from us

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 user/contributors/committe

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 as

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 HAPI.

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 Ex

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 t

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 system

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 wit

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 about

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 03/07/20

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 BodyInAgg

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]. That

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 on

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] http://

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 believ

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 t

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 AS

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.) Cheers

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 in

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 idea

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

2013-01-25 Thread Hadrian Zbarcea
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 wrote: This is one more reason why the hawt.io discussions should take place in the hawt.io communities. Not here. T

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
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: [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 cor

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 messag

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 01:4

Re: Basic question about synchronous queues and pipes..

2012-11-19 Thread Hadrian Zbarcea
Hi, What you're doing is almost good. The only thing missing, if I understand your use case well, is a resequencer [1] that enforces the correct order. Doing it on separate routes is not really mandatory, but personally I would prefer it. I'd use either seda: or jms: for that, depending on ho

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 runti

Re: Can I perform a move file operation in camel?

2012-11-12 Thread Hadrian Zbarcea
If you just need to move, camel-exec would help. If you want to process the file and move after processing, a custom strategy with the file component from camel-core would help (with something like pollEnrich, I guess). Cheers, Hadrian On 11/12/2012 02:17 PM, ramkumar.i...@cognizant.com wrote

Re: SFTP readLock option

2012-10-22 Thread Hadrian Zbarcea
Assuming I read your question correctly, the default file process strategy will be a GenericFileNoOpProcessStrategy which does not need a readLock (typically it won't be set). See [1]. Hadrian [1] https://svn.apache.org/repos/asf/camel/tags/camel-2.8.1/components/camel-ftp/src/main/java/org/a

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 prope

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 message-header

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 AM,

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: 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 passwo

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] tinyurl.com/camelympics

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 fo

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 co

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: 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 p

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 yo

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 goo

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: [ANNOUNCE] Apache Camel 2.9.2 Released

2012-05-03 Thread Hadrian Zbarcea
l/apache-camel/2.9.2/apache-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 Nabb

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: Handling unsuccessful Session.send in Quickfix component

2012-05-02 Thread Hadrian Zbarcea
t 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-jsch in sink mode for one time copy from a remote host using SCP

2012-05-02 Thread Hadrian Zbarcea
87.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-04-19 Thread Hadrian Zbarcea
.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
://camel.465427.n5.nabble.com/RDF-Integration-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
2012 16:11 skrev Hadrian Zbarcea: Not yet, I wrote a camel-jena component a while ago, at the time Jena was moving to the ASF. Then they didn't have a release for a long time. They just had their first release recently. From my talks to the guys in the jena community there seems to be some

Re: RDF Integration

2012-04-05 Thread Hadrian Zbarcea
s or other 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

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

2012-04-04 Thread Hadrian Zbarcea
rote: Is there any facility to add arbitrary properties to Routes rather than just Exchanges from within a RouteBuilder? I noticed that there are a few internally managed properties automatically added to each Route (id, parent, group) but I could not find a hook to set additional ones from a Rou

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

2012-04-02 Thread Hadrian Zbarcea
65427.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
e at Nabble.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
ensing If you got any questions feel free to contact me via email or use the Hibersap forums or issue tracker on Sourceforge. Best Regards, Carsten (Founder of the Hibersap project) - -- Christian Schneider http://www.liquid-reality.de Open Source Architect Talend Application Integration

Re: Do Apache Camel needs a SAP integration?

2012-03-15 Thread Hadrian Zbarcea
rsten (Founder of the Hibersap project) - -- 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: Question on the proper usage of Camel

2012-02-12 Thread Hadrian Zbarcea
5. Testing the Camel flow is not a nice experience as well. For every test, you have to set up those dummy endpoints, and record expected number of incoming messages. Then, when there is an exception thrown in the flow, instead of just breaking the test where it was thrown, we see the cryptic messa

Re: Choich() with multiple Routing EIP

2012-02-09 Thread Hadrian Zbarcea
apache.camel.Predicate) Basically the second when() fails to compile? This means that in the choice() I can't use dynamicRouter() and recipientList() 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
s field is listed 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
very helpful to proceed -- 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://

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

2012-02-03 Thread Hadrian Zbarcea
, Krsmanovic, Dragisa wrote: This works Future future = camel.asyncRequestBody("seda:test?timeout=6", "DO", String.class); Curiously, setting timeout on the route definition seems to be ignored: from("seda:test?timeout=6")... does not change the default 30 sec

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

2012-02-03 Thread Hadrian Zbarcea
ssage was not received within: 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: File consumer - waiting for it to start

2012-02-03 Thread Hadrian Zbarcea
://camel.465427.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: Problem Removing Endpoints

2012-02-03 Thread Hadrian Zbarcea
AddRoutes() to add routes with the same endpoints results in duplicate endpoints present in the context. -- View this message in context: http://camel.465427.n5.nabble.com/Problem-Removing-Endpoints-tp5455029p5455127.html Sent from the Camel - Users mailing list archive at Nabble.com. --

Re: Problem Removing Endpoints

2012-02-03 Thread Hadrian Zbarcea
ist archive at Nabble.com. -- 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
be reading? Thanks, Alex On 26 January 2012 21:22, Hadrian Zbarcea wrote: Alex, smslib is distributed under ALv2, which is great. I didn't check yet if it's OSGi ready, we're looking for that too. All our components are now OSGi ready. If smslib isn't we'll try to

Re: Apache Camel applicability

2012-01-27 Thread Hadrian Zbarcea
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-26 Thread Hadrian Zbarcea
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://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
.mulesoft.com/sap-integration Best, Christian -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

Re: No consumers available on endpoint exception

2012-01-12 Thread Hadrian Zbarcea
e.blogspot.com - -- 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.ta

Re: @Bean annotation in REST service definition

2012-01-12 Thread Hadrian Zbarcea
unmarshalls the json but I cannot find the way 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

Re: SpringCamelContext afterPropertiesSet never called

2012-01-11 Thread Hadrian Zbarcea
<mailto:mpil...@npr.org> | o: 202-513-2679 m: 703-969-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
ion? It's fine but I don't need whole BPMN, diagraming. I want to track a flow between systems in an easy way, 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
06204p5121209.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: Way to find out if a message has reached all the destinationtions?

2011-12-05 Thread Hadrian Zbarcea
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://camelbot.blogspot.com/

Re: Passing SEDA instance to Bean

2011-11-30 Thread Hadrian Zbarcea
rrect. 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

Re: URGENT help please

2011-11-26 Thread Hadrian Zbarcea
/ 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: onCompletition block

2011-11-24 Thread Hadrian Zbarcea
tml 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: how to call route from other route?

2011-11-23 Thread Hadrian Zbarcea
er-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
e.com. -- Hadrian Zbarcea Principal Software Architect Talend, Inc http://coders.talend.com/ http://camelbot.blogspot.com/

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

2011-11-21 Thread Hadrian Zbarcea
ntext: 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-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

  1   2   3   >