Re: creating route template - java builder vrs java dsl

2025-06-12 Thread j vh
do that uses the template. Maybe there is some SB annotation trick to declare dependency order among the beans and whatnot. But Camel 3 is EOL and we wont have time to investigate old releases. On Fri, Jun 6, 2025 at 7:44 PM j vh wrote: > Hello, > We are upgrading from Camel 3.18.4 to 3.22

creating route template - java builder vrs java dsl

2025-06-06 Thread j vh
Hello, We are upgrading from Camel 3.18.4 to 3.22.4 to pickup some important bug fixes but noticed a new problem. When we are instantiating a route in a spring-boot (2.6.2) app from a route-template the Java builder intermittently fails 3 out of 4 times. As a workaround we switched to using the

Kubernetes-events consumer debugging help

2024-07-29 Thread Neuman, Benjamin J
Hi all. I am attempting to implement a route which will receive k8 events and simply write them to system:out. The application is running in our cluster, however, it is not receiving any events. I'm hoping to get some info on how I might debug this issue. For reference, here is the route: from("k

jms manual acknowledge

2024-02-26 Thread j vh
Hello, Using JMS component to consume messages from a queue with the following example code using a pollEnrich: @Override public void configure() throws Exception { // Exception handling removed to simplify from("direct:testRoute") .routeId("test1-route-id") .loopDoWhile(body()

Camel K 1.11.0

2023-01-25 Thread Urciolo, Kevin J (PERATON)
Hello Camel Users, I am setting up Camel-K version 1.11.0 and running the first hello.groovy example via: kamel run hello.groovy. I am seeing errors of the following type in the pod log. {"level":"error","ts":1674679707.3337958,"logger":"camel-k.maven.build","msg":"[ERROR] Some problems were e

RE: ExchangeTimedOutException

2022-10-10 Thread Wilken Marci J
Yes, use setMessage() on return. I ran into this a while back. Not all message processes have an in and an out. If the message process doesn't create an out by using setOut it created a new blank message and you loose everything from the original message. -Original Message- From:

JMS Component usage with Oracle Advanced Queue (AQ)

2022-10-06 Thread j vh
Hello, Using Camel 3.18.0 with Spring-boot 2.6.2 and consuming messages in a route from an Oracle Advanced queue. Doing some performance testing consuming JMS messages that showed using a @JmsListener annotated receiver class and the Camel producer template was significantly faster than using a

RE: Encrypt header value. - TypeConverter

2022-09-20 Thread Wilken Marci J
; On Sat, Sep 10, 2022 at 7:12 PM Jeremy Ross > wrote: > > > Have you looked at the jsypt component? With it, you can store your > > password encrypted, then access it using property placeholder syntax: > > > > ftps://?password={{my_ftp_password}} > > > &

Encrypt header value.

2022-09-06 Thread Wilken Marci J
HI all, Issue: sensitive data getting passed from the exchange header to the logs in the clear. Is there a way to encrypt header value in camel? I've got several values; id, ssn, dob, password that get passed around in the message header or that I would like to pass in the header. I would

Re: Apache Camel Exception Handling doubt

2022-06-17 Thread j vh
} } From: ski n Sent: June 17, 2022 8:28 AM To: users@camel.apache.org Subject: Re: Apache Camel Exception Handling doubt Hi, It's good to provide a code example to see what you tried. Have you also tried to combine it with route configurat

Re: Apache Camel Exception Handling doubt

2022-06-16 Thread j vh
Hello, btw... I'm using Camel 3.13.0 for this work. ...jvh003

RE: Apache Camel Exception Handling doubt

2022-06-16 Thread j vh
Hello, I am also trying to use global exception configuration in a Camel route that is built from a template. The template is created ok and the route created from it is also ok & working. But the global exception handling is not working as expected. Maybe there is another way to customize the

Converting ;< ;> to <> in camel

2021-12-02 Thread Wilken Marci J
Is there a transform or type converter that will convert escaped xml to standard xml I get this from a legacy axis 1.4 system R SelectClientPerpetratorInfo

sftp deleting file from localworkDirectory - How do I make it stop

2021-11-19 Thread Wilken Marci J
How do I get camel-sftp to stop deleting the file from my local work directory after is done downloading. I just want it to download the file and not do anything to it. When it done all I want to do is pass the name of the file to another route that does the processing. But I see this in the

State of Oregon Looking for a Camel Developer - Java DSL

2021-09-23 Thread Wilken Marci J
Hello fellow developers, The State of Oregon OHA/ODHS Office of Information Service is looking for a contractor to help convert an existing legacy ESB system to Camel for the OR-Kids Child Welfare System. Please See https://secure.covendis.com/cov/socialnetworkpost.html?postid=4389#b for more

simple("${header.LoggingLevel}").evaluate(,String.class)

2021-09-15 Thread Wilken Marci J
I am attempting to create a re-usable route for SQL errors. Based upon the SQLErrorLevel I want to write an Error, Warning, or Info message out. I can set the LoggingLevel in the Header but I have figured out anyway to get it back out and use it. The closes I've come is simple("${header.Loggin

Camel-CXF Pojo or Payload

2021-08-31 Thread Wilken Marci J
Hello everyone, I am trying to decide if I should use a Pojo or Payload DataFormat for a Soap Camel-Cxf consumer route. Pojo seems like the easiest solution but looking at the exchange body produced it creates a MessageContentList. Is the list always in the order of the wsdl definition? I am c

Unable to reach Nabble site

2021-08-31 Thread Wilken Marci J
Morning everyone, Is something up with the nabble site or has it been moved? camel.465427.n5.nabble.com. get me "This site can't be reached" Regards- Marci Wilken

RE: json to Pojo convertion problem for camel Rest DSL

2021-08-31 Thread Wilken Marci J
Hi, Based on the "<" you are seeing in the error I think you are receiving XML not JSON in the package. I've seen a similar message in CXF -Original Message- From: Wang Yan Sent: Friday, August 27, 2021 1:20 AM To: users@camel.apache.org Subject: json to Pojo convertion problem for ca

RE: Camel X12 837/835 library

2021-07-12 Thread Wilken Marci J
Hi, Again, want to ping this to see if I could get any feedback on this. Thanks Hi. I am looking for library/component that will convert beans to X12 837 Claims submissions to medical system, Title XIX Medicaid/Medicare. This is a really standard submission format so I'm not looking to reinv

Camel X12 837/835 library

2021-06-08 Thread Wilken Marci J
Hi. I am looking for library/component that will convert beans to X12 837 Claims submissions to medical system, Title XIX Medicaid/Medicare. This is a really standard submission format so I'm not looking to reinvent the wheel. I've seen a couple of examples of reading in an 837 and converting

ProducerTemplate.request() not returning complete Exchange.

2020-01-14 Thread Wilken Marci J
Based on the documentation I was reading the ProducerTemplate.request(, Processor) should return the Exchange information from the route that was called. When I am running my test on this it is returning the body information in the exchange.getOut().getBody() but the exchange.getOut().getHeade

Using JConsole with Camel

2018-07-25 Thread Binole, William J
We have a security requirement to at least password protect JConsole access to camel. It seems that for some reason at least on the default port of 1099 this is not possible. I have set up password and access files and provided the necessary JVM params but the password is never honored. So for t

Recommended jars to use with Camel

2018-07-06 Thread Binole, William J
Is there a recommended set of jars to use with versions of Camel? We have an application that is leveraging Camel, ActiveMQ and spring connecting to a queue on Weblogic. We recently made the move to upgrade all the versions of these jars to the most recent ones and have been having issues connec

RE: Camel 2.21.1 HttpComponent

2018-06-19 Thread Binole, William J
Jiang Twitter: willemjiang Weibo: 姜宁willem On Tue, Jun 19, 2018 at 9:44 PM, Binole, William J < william.j.bin...@questdiagnostics.com> wrote: > Willem thank you for your response. Yes, all the jars were updated at > the same time and all have 2.21.1 in their names. Dependencies fro

RE: Camel 2.21.1 HttpComponent

2018-06-19 Thread Binole, William J
as 2.19.4 -> 2.19.5. Willem Jiang Twitter: willemjiang Weibo: 姜宁willem On Tue, Jun 19, 2018 at 5:24 AM, Binole, William J < william.j.bin...@questdiagnostics.com> wrote: > We recently upgraded our camel libs to the latest version (2.21.1) and > have found that we can no longer

Camel 2.21.1 HttpComponent

2018-06-18 Thread Binole, William J
We recently upgraded our camel libs to the latest version (2.21.1) and have found that we can no longer instantiate HttpComponent. This is due to the constructor calling the registerExetnsion method which we have yet to find in the source. public HttpComponent(Class endpointClass) {

Most efficient way to unmarshall a large web service response

2017-12-08 Thread Gokul J
Hi All, So we use Apache camel in order to consume web services via spring WA and recently we are being plagued with OOM issues relating to heap size . The response is around 675 MB in size and we had to increase the heap by 5 GB to successfully unmarshall it . We use vanilla jaxb data format

RE: [External] Re: Content Based Routing Feasibility Q

2017-09-01 Thread Jens J Parappallil
Hi, Yes, You can take a look at the camel cxf examples. I had done a similar implementation by creating a separate camel component and then registering routes with this. The Registered routes would provide a set of filter conditions in your case the user which it is expecting. An http end point

Downloading RedHat Version Of Camel

2017-08-01 Thread Urciolo, Kevin J [US] (MS)
Is there a place where one can download recent version of a pre-built RedHat (productized) version of Apache Camel? My organization does not have a support license, but would like to use the open source nature of the productized version. I can see that a recent version of 2.17 is available at

jCIFS timeout settings

2017-05-08 Thread Peter J Nelson
I have a camel route that needs to delete a file over CIFS. For the most part it works, but occasionally, I get a timeout from the CIFS server. jcifs.smb.SmbException: Transport1 timedout waiting for response to SmbComDelete[command=SMB_COM_DELETE,received=false,errorCode=0,flags=0x0018,flags2=0xC

Re: Using method inside a choice/when

2017-03-08 Thread Peter J Nelson
I found the root cause of my issue. I previously had been setting a header, and simply forgot to set it here. Once the header is added back in, the predicate works as advertised. I obviously need a test for null in my code. -- View this message in context: http://camel.465427.n5.nabble.com

Re: Using method inside a choice/when

2017-03-08 Thread Peter J Nelson
public class OpenCNPredicate implements Predicate { private static Logger logger = LoggerFactory.getLogger(OpenCNPredicate.class); /** * Checks RMS to see if the CN in the STPCaseNo header exists in RMS or not * * @param exchange the exchange object subject to the test

Using method inside a choice/when

2017-03-08 Thread Peter J Nelson
I am trying to use a custom predicate inside of a choice in Spring XML, but I'm finding my predicate is always being treated as "false" - the bean itself does not seem to be called.

Re: smb cannot connect to server

2016-10-31 Thread Peter J Nelson
One thing I should make clear, the remove vendor supports Windows Networking, period. There is no option for changing the protocol, so please understand that is NOT a solution to this problem. -- View this message in context: http://camel.465427.n5.nabble.com/smb-cannot-connect-to-server-t

smb cannot connect to server

2016-10-31 Thread Peter J Nelson
Camel: 2.16.3 camel-jcifs: 2.15.0 (latest release) I am trying to pull files from a remote Windows Share. I have a route that works fine when connecting to a Windows Share in my own domain, but when I try to connect to a host in another domain, it constantly errors with: org.apache.camel.compone

smb cannot connect to server

2016-10-28 Thread Peter J Nelson
Camel: 2.16.3, camel-jcifs: 2.15.0 (latest) I am using jCIFS and attempting to connect to a remote share in a different domain. I can connect to this share without issue using Windows Explorer (Win 7) and the UNC path. I can also connect through Linux using smbclient (SuSE 11, samba-client-3.6.

Re: How to make aggregator wait until all threads are completed

2016-07-16 Thread mailingl...@j-b-s.de
That's the funny thing about splitting and parallel: The last message with the split end marker is usually never the last message processed. We tried resequencing (via split index) without success, because you have to keep all messages in memory to guarantee sequencing works properly, otherwise

problem Settting camel header value to java enum value

2016-06-08 Thread J-
Trying to set the header to to an enum value but seem like it's only setting it to a string using camel 2.17.1:   ${type:org.apache.camel.Exchange.FILE_NAME} But the value in the header is a string that equals: "org.apache.camel.Exchange.FILE_NAME" What am i doing wrong?? Also tried wit

XML Configuration with Spring boot

2016-06-03 Thread J-
r, is there any preference/benefits of using xml over java.   Our lead wants us to switch back to using xml instead of java, and so far the xml is far more difficult to write. Thanks, -J

splitter parallel processing and setHeader or setProperty

2016-05-17 Thread J-
Hi, When doing "splitter" processing in parallel does it copy the entire exchange for each process?  I've noticed that after a splitter, i have a parallel process that calls a restlet like this: from("direct:a").split(body(string.class).tokenize("\n").parallelProcessing(true).to("direct:from-sp

Re: Restlet GET request can cause Memeory leak/Stream not closed due to CAMEL-9611

2016-05-13 Thread J-
ange is done, so I am adding that. On Fri, May 13, 2016 at 3:40 PM, J- wrote: > Just do this quick test: > > from("direct:start").loop(20).to("restlet:http://"); > > you will get this exception because connections aren't closed until they are > read fr

Re: Restlet GET request can cause Memeory leak/Stream not closed due to CAMEL-9611

2016-05-13 Thread J-
closing it when its done being routed in Camel. So it smells like you should look at the route consumer. What are you using? On Fri, May 13, 2016 at 12:03 PM, J- wrote: > My apologies, this bug is 100% my fault because of CAMEL-9611. > Jira is in some weird locked down state so i can't pos

Restlet GET request can cause Memeory leak/Stream not closed due to CAMEL-9611

2016-05-13 Thread J-
My apologies, this bug is 100% my fault because of CAMEL-9611. Jira is in some weird locked down state so i can't post the issue on there, but this is pretty major. The fact that we no longer read the message body for Restlet GET request has created a very painful bug (that took me 3 days to fig

Re: Camel Large File Processing Issues

2016-04-17 Thread mailingl...@j-b-s.de
Hi, the bodyToString converts it, try body.tokenize() and add a marshall() call before splitt. Von meinem iPhone gesendet > Am 17.04.2016 um 23:02 schrieb h0mer : > > Hey Guys, > > So I'm trying to implement the following Route: > > FTP --> Get Large log file (3G) --> Copy to Local Working

Re: Beanio stream...

2016-04-04 Thread mailingl...@j-b-s.de
Hi Brad! To read and split a file you need a combination of streaming unmarshalling and splitter components. Is tmxPaymentTechIn something you wrote? You can try to read the file by camel as xml, splitting groups by xpath and unmarshall just the group from xml to a bean model... Unfortunately

Re: Best Strategy to process a large number of rows in File

2016-03-30 Thread mailingl...@j-b-s.de
Hi Michele! Your mem settings look odd to mee. > -server -Xms256M -Xss512M -Xmx512M -XX:+UnlockDiagnosticVMOptions > -XX:+UnsyncloadClass -XX:PermSize=512M -XX:MaxPermSize=1024M Your Perm Space is greater than your heap? Sure? I doubt you need 1G set your heap to 1G and Perm to 256m as a fi

Re: Request to multiple routes

2016-03-29 Thread mailingl...@j-b-s.de
Hi! What do mean by request/response, HTTP? So your routes listen on a particular URL and you have 8 different URL in total, one per route? Jens Von meinem iPhone gesendet > Am 30.03.2016 um 01:45 schrieb Raghuveer : > > I have around 8 routes to call one after another. Can I set request to f

Re: Camel jetty filtersRef how to set init parameters for filter

2016-01-10 Thread J-
The problem is, when jetty starts up the filter it calls the filters init method again essentially erasing whatever i set in the init manually. -J From: Willem Jiang Sent: Sunday, January 10, 2016 4:47 AM To: users@camel.apache.org; J- Subject: Re

Camel jetty filtersRef how to set init parameters for filter

2016-01-09 Thread J-
Hi i see how you can set a servlet filter on the Jetty component with the filtersRef option, but i need to set a couple init parameters on the filter object when it's init gets called. Is this possible to do? Thanks.

Re: Custom fluent API in Java DSL

2015-12-08 Thread mailingl...@j-b-s.de
Hi! Can you give an example what type of method you want to add to the RouteBuilder? To my understanding if you need a custom DSL to lets say "reuse camel specific DSL sequences" its easier to write your own DSL completely hiding camel and rely on RouteBuilder internally as usual. But maybe I

Re: Camel ThreadPool maxQueueSize question

2015-11-21 Thread mailingl...@j-b-s.de
ook into > it. Note my previous post that in my dev environment the reason it stopped > was out of memory error...i doubt that is the same case in production as > the rest of the routes do not stop. > > -Dave > > On Sat, Nov 21, 2015 at 1:36 AM, mailingl...@j-b-s.de > wrote

Re: Camel ThreadPool maxQueueSize question

2015-11-21 Thread mailingl...@j-b-s.de
Well, an OoMemEx says "allocating new memory failed". This has afaik no effect to ather running process. Ok chances are high they will fail too in subsequent processing steps if memory is not avail in general. What is the root cause? Are you reading a hugh file into memory? Are you spltting the

Re: Camel ThreadPool maxQueueSize question

2015-11-21 Thread mailingl...@j-b-s.de
Hi! when your sftp read threads stopps the files are still in process? In our env we had something similar in conjunction with splitting large files because the initial message is pending until all processing is completed. We solved it using a seda queue (limited in size) in betweeen our sfpt

Re: splitter().tokenize(...) does not recognize new lines in file uploaded using Spring MVC MultipartFile

2015-10-28 Thread mailingl...@j-b-s.de
Hi! Can you check both files in a Hex Editor/Viewer? Text Editors usually understand all kind of line breaks but eventually the splitter does not recognize it (you are using the line sep from your hosting system eg unix and your file is created under windows)? Jens Von meinem iPhone gesendet

Re: action at the end of the split

2015-08-11 Thread mailingl...@j-b-s.de
Hi! Try the following: in your split route just set a new header field with the value of "splitsize". Ok, this assignment is made more than once redundantly per each splitted element, but header properties you create on the original message are retained (hopefully :-) Jens Von meinem iPhone g

Re: Aggregator - discard new messages

2015-08-05 Thread mailingl...@j-b-s.de
We had the same problem and aggrgator (same applies to sequencer) will not work due to a potential timeout splitting the result as you described it allready. We solved it by a) starting the route b) do all processing / aggregation in combination with the inflight repository to detect the end of

Re: knowing wenn splitted exchange is completed in distributed env

2015-07-06 Thread mailingl...@j-b-s.de
Hi! We had a similar problem when using "parallel processing" on a single machine and searched for a solution without using aggregator or sequencer. At the very end we sent the results processed in parallel back to a common "ack" queue (maybe you strip the body before) which runs in the same pr

Auto-commit and camel-kafka

2015-07-04 Thread Michael J. Kitchin
re I might fork this code and optionally bypass the consumer.commitOffsets(); during shutdown or when an exchange carries an exception after the processor.process(exchange) call. Thoughts? Please let me know if I may provide any additional information. Thanks. -Regards, MjK - - - - - Mic

Re: Event driven producer?

2015-04-09 Thread mailingl...@j-b-s.de
Hi Christopher! Why not using an aggregator? Or you simply emit your messages 1:1 and set the message body to 'null' if there is nothing to send from your business logic perspective. You can simply use a filter afterward to drop all messages having a 'null' body to get your expected behaviour.

Re: ServiceStatus isProcessing?

2015-01-26 Thread mailingl...@j-b-s.de
Hi Kranti, from our experience relying solely on the inflight repo won't work, because even it's empty you may have pending messages in other components eg aggregator or sequencer or queues. Afaik there is no central camel service existing to check if all work is entirely finished so it depends

Re: sftp - Exception during concurent execution of sftp endpoint

2014-12-24 Thread mailingl...@j-b-s.de
Hi! What about processing in a serial fashion by sending both messages to a seda queue first and from here to your sftp endpoint? Just to avoid any concurrency issues and I am aware this not exactly an answer for your question but maybe a workaround. Jens Von meinem iPhone gesendet > Am 24.1

Rest API for the Scala DSL

2014-12-19 Thread J Birch
Is there plan to support the rest API within the Scala DSL anytime soon?  We just updated to 2.14.1 and it doesn’t look like it is there. Birch

Re: aggregation and completionPredicate

2014-12-07 Thread mailingl...@j-b-s.de
Hi Claus! Sorry but I do not understand. My correlation expression is simply returning the value of "key" (see class "CorrelationExpression" below of my initial mail). Debugging I see the first list contains two elements as expected. As soon the correlation key changes camel correctly starts wi

Re: Fastest Data Holder

2014-04-30 Thread mailingl...@j-b-s.de
What do you mean by different systems? Different Camel Processors? You can store your data as body/property and this is a pure instance pointer. As long the message is not deep cloned/serialized as bytestream there is no overhead passing this message through the camel routes (in one vm). Can yo

Canceled: EXT :Re: Multiple Try-catch -Exception-Handling using spring DSL facing issues

2014-04-01 Thread Urciolo, Kevin J (IS)
:16010101T02 TZOFFSETFROM:-0500 TZOFFSETTO:-0400 RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=2SU;BYMONTH=3 END:DAYLIGHT END:VTIMEZONE BEGIN:VEVENT ORGANIZER;CN="Urciolo, Kevin J (IS)":MAILTO:kevin.urci...@ngc.com ATTENDEE;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;RSVP=TRUE;CN=users@came l.apache.org:MA

EXT :Re: Multiple Try-catch -Exception-Handling using spring DSL facing issues

2014-04-01 Thread Urciolo, Kevin J (IS)
:16010101T02 TZOFFSETFROM:-0500 TZOFFSETTO:-0400 RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=2SU;BYMONTH=3 END:DAYLIGHT END:VTIMEZONE BEGIN:VEVENT ORGANIZER;CN="Urciolo, Kevin J (IS)":MAILTO:kevin.urci...@ngc.com ATTENDEE;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;RSVP=TRUE;CN=users@came l.apache.org:MA

Re: EXT :Re: Multiple Try-catch -Exception-Handling using spring DSL facing issues

2014-04-01 Thread Urciolo, Kevin J (IS)
- Original Message - From: Claus Ibsen [mailto:claus.ib...@gmail.com] Sent: Tuesday, April 01, 2014 09:14 AM To: users@camel.apache.org Subject: EXT :Re: Multiple Try-catch -Exception-Handling using spring DSL facing issues Hi See the doTry .. doCatch examples http://camel.apache.org/

Re: Java DSL / GroovyExpression / Binding

2013-08-18 Thread mailingl...@j-b-s.de
iteye.com (http://jnn.javaeye.com/) (Chinese) > Twitter: willemjiang > Weibo: 姜宁willem > > > > > > On Monday, August 19, 2013 at 12:47 PM, mailingl...@j-b-s.de wrote: > >> Hi all! >> >> Is there any chance to extend the binding of a GroovyExpression?

Java DSL / GroovyExpression / Binding

2013-08-18 Thread mailingl...@j-b-s.de
Hi all! Is there any chance to extend the binding of a GroovyExpression? Currently (in camel 2.11.1) the Groovy binding is defined on runtime based on the exchange only and I did not find an extension point. My current solutions is to use a GroovyExpression2 class which is a copy of the original

Re: CamelOne

2013-05-29 Thread J. Ecklund
I'll be there Sunday evening in time for the reception. See you all then! Joshua Ecklund Web Developer m.prow...@gmail.com On Mon, May 27, 2013 at 1:53 PM, Christian Müller < christian.muel...@gmail.com> wrote: > CamelOne 2013 (http://camelone.org/) is in about two weeks! > Who will be there?

Patch updated for CAMEL-5359

2013-05-03 Thread J. Ecklund
Hello, The patch which was previously provided for CAMEL-5359 had other fixes in it as well -- I went ahead and removed all fixes not directly related to CAMEL-5359 and have attached the updated patch to the ticket. https://issues.apache.org/jira/browse/CAMEL-5359 Regards, Joshua Ecklund m.prow

Re: tcp socket client consumer endpoint?

2013-01-11 Thread j
have anyone of you guys succeeded in preparing his own Component for this scenario? would you share some snippets? -- View this message in context: http://camel.465427.n5.nabble.com/tcp-socket-client-consumer-endpoint-tp3276804p5725365.html Sent from the Camel - Users mailing list archive at N

Re: "mvn camel:run" in NetBeans

2011-11-07 Thread Robert J. Liguori
I figured in out: http://wiki.netbeans.org/MavenBestPractices Thanks! Robert On Mon, 07 Nov 2011 15:31:43 -0500, "Robert J. Liguori" wrote: > I believe that the build menu option in NetBeans invokes, "mvn install". > > How do I do any of the following in N

"mvn camel:run" in NetBeans

2011-11-07 Thread Robert J. Liguori
I believe that the build menu option in NetBeans invokes, "mvn install". How do I do any of the following in NetBeans? --> mvn compile --> mvn camel:run --> mvn jetty:run --> mvn exec:java I'm asking here, as I'm trying to run the Apache Camel Example projects through NetBeans. Thanks! Robe

Spring DSL vs Java DSL

2011-10-13 Thread Robert J. Liguori
Is it fair to say that *any* route can be written in Spring DSL or Java DSL, which will ultimately have the same effect? Or is this not the case? Thanks, Robert

routing to two places.

2011-09-17 Thread Robert J. Liguori
I want a route to go two places: AND How do I do the AND? Thanks!

How do I get the exception information that is caught in Spring DSL routes?

2011-09-08 Thread Robert J. Liguori
How do I get the exception information that is caught in Spring DSL routes? For, example, when I'm using the validation component, the exception routes the invalid XML to the specified endpoint: ... org.apache.camel.ValidationException

XML Validation... getting to the error messages using Camel

2011-09-04 Thread Robert J. Liguori
I'm using Spring DSL with a camel route to validate XML messages: How do I get to the error messages for invalid XML files that do not pass validation? Thanks!

Re: Transactional batching

2011-08-21 Thread David J. M. Karlsen
Looking at this thread I wonder the same. During a resource local jmstransaction you are able to fetch several messages - but there is no way in camel to control the commit size. You can do the same during a XA tx. I see no support for batching here: http://camel.apache.org/batch-consumer.html.

Re: XmlBeans - Working with the data from the routes

2011-08-03 Thread Robert J. Liguori
,1 > mov ebx,0 > int 80 > > On 3 Aug 2011, at 07:11, Claus Ibsen wrote: > >> Hi >> >> On Tue, Aug 2, 2011 at 6:24 PM, Robert J. Liguori wrote: >>> What are my options for working with XML object instances after I use a >>> route to unmarshal

XmlBeans - Working with the data from the routes

2011-08-02 Thread Robert J. Liguori
What are my options for working with XML object instances after I use a route to unmarshal the data with XmlBeans. Just a couple of pointers as how this is done would be cool... Thanks! -- Robert

Re: Camel and XMLBeans

2011-07-30 Thread Robert J. Liguori
; but that's a detail. JAXB has the benefit of being part in the JDK. So it's > a matter of choice, are you in a greenfield situation? Or are you already > using of these technologies? > > -- > View this message in context: > http://camel.465427.n5.nabble.com/Camel-

Camel and XMLBeans

2011-07-29 Thread Robert J. Liguori
tion, etc. for Apache XMLBeans are all stalled (in a obvious sense). The reason I ask, is that I'm trying to decide between using JAXB and XMLBeans, in relationship to Camel components. Thanks! -- Sincerely, Robert J. Liguori STG Technologies, Inc.

Re: Getting the JARs through Maven for additional components

2011-07-27 Thread Robert J. Liguori
Got it... "camel-spring"... thx. On Wed, 27 Jul 2011 19:34:03 -0400, "Robert J. Liguori" wrote: > Just learning camel... I want to use the XSD validator component... > > How do I add the dependency for it to the POM file? > > Thanks! > > -- > Since

Getting the JARs through Maven for additional components

2011-07-27 Thread Robert J. Liguori
Just learning camel... I want to use the XSD validator component... How do I add the dependency for it to the POM file? Thanks! -- Sincerely, Robert J. Liguori STG Technologies, Inc.

Re: test-jms component

2011-07-24 Thread Robert J. Liguori
omething > about Camel URI, we use the URI scheme to look up the component. > In you case, I don't think we have a tcp component registered to > camel by default. I don't think your URI of "tcp:" can work. > > On 7/25/11 2:28 AM, Robert J. Liguori wrote: >>

Discussion - example projects coverage of key components

2011-07-24 Thread Robert J. Liguori
/host:port/room Working with XMPP and Jabber XSLT / camel-spring xslt:someTemplateResource Generates a response using an XSLT template -- Sincerely, Robert J. Liguori STG Technologies, Inc.

test-jms component

2011-07-24 Thread Robert J. Liguori
Anyone know why the test-jms component isn't listed here with the rest of the components: http://camel.apache.org/components.html? Also, what is the difference between using "mina:tcp" and just "tcp:"? Thanks. -- Robert Sincerely, Robert J. Liguori STG Technologies, Inc.

Visio implementation of remaining EIP patterns

2011-07-18 Thread Robert J. Liguori
design for the existing images originated? Was it with Matt, or a group of people, or the authors of the EIP book, etc? Thanks. -- Sincerely, Robert J. Liguori STG Technologies, Inc.

Re: General guidance for simple camel-supported app.

2011-07-17 Thread Robert J. Liguori
ry) > http://fusesource.com > > Blog: http://opensourceknowledge.blogspot.com > - > -- > View this message in context: > http://camel.465427.n5.nabble.com/General-guidance-for-simple-camel-supported-app-tp4597618p4597855.html >

General guidance for simple camel-supported app.

2011-07-17 Thread Robert J. Liguori
move it to an invalid-files folder (4) If the file is valid, convert it to a POJO (i.e., Jaxb), where it will thereafter be used in an application. Any pointers or suggestions? All and any help is appreciated. -- Robert -- Sincerely, Robert J. Liguori STG Technologies, Inc.

Re : RSS Feed for official Apache Camel News

2011-07-02 Thread j...@nanthrax.net
Hi Christian, Very good idea !! Thanks Regards JB - Reply message - De : "Christian Schneider" Pour : "users@camel.apache.org" Objet : RSS Feed for official Apache Camel News Date : sam., juil. 2, 2011 11:24 After testing this for a while on my reader I now added a RSS Feed for the

Bitronix With Apache Camel ActiveMQComponent

2010-12-18 Thread Urciolo, Kevin J (IS)
ansportServerThreadSupport INFO Listening for connections at: tcp://localhost:61610 [pache.camel.spring.Main.main()] TransportConnector INFO Connector tcp Started [pache.camel.spring.Main.main()] BrokerService INFO ActiveMQ J MS Message Broker (lo

pollEnrich and with two file endpoints is not supported

2010-06-14 Thread John J. Franey
I have a route the has to read two files and combine them. I used pollEnrich and got this error message: Camel currently does not support pollEnrich from a file/ftp endpoint when the route also started from a file/ftp endpoint. What is the reason behind this limitation? What can I do to work a

servlet deployment without spring dependencies

2010-06-10 Thread John J. Franey
Is there an example of deploying a java-dsl camel route as a servlet without the spring dependencies? If no example already exists, can someone outline here what is needed? Thanks, John -- View this message in context: http://old.nabble.com/servlet-deployment-without-spring-dependencies-tp288

surrogate key and integration pattern

2010-06-01 Thread John J. Franey
Hi, I'm looking for a discussion regarding the temptation to use surrogate keys in integration data. I know that exposing a surrogate key to an external system will naturalize the key, it would become a business data element. I want to avoid that. However, we find we have a requirement to use

jre 1.5 no longer available

2010-04-23 Thread John J. Franey
I build with java 1.6. Maven build fails. sun.com:tools:jar:1.5.0 is not resolved. I do not have jre or jdk 1.5 installed. jdk 1.5 is not available on the sun/oracle download site any longer, it is EOL. What is your suggestion? Thanks, John -- View this message in context: http://old.nabb

Camel event handling code

2009-02-17 Thread Stephen J
I have written some code to add event handling to camel. From what I've read on the forums and a number of the JIRA tickets there seems to be a need for some type of event handling built into camel. If someone who is familiar with camel internals would take this code for a spin and see if the i