Installing Camel-Azure-Storage-Queue

2021-12-13 Thread Robert Dean
Greetings, I am trying to add use Camel-Azure-Storage-Queue in my Karaf 4.3.0 instance (Camel 3.7.0) with a Blueprint xml deployment. I have the camel-azure-storage-queue listed as installed (feature:list). I am using java 11. I am using a VERY simple camelcontext (see below). The error I am

Apache Camel IDEA Plugin AWT Exception & camel-catalog

2021-03-19 Thread Leland, Robert (CTR)
I am using IntelliJ 2021.1 Beta with Camel 3.8.0, and the latest publish IDE plugin (I know it doesn't support 3.X yet) Two Questions #1) I am seeing: java.lang.Throwable: AWT events are not allowed inside write action: java.awt.event.FocusEvent[FOCUS_LOST,temporary,opposite=javax.swing.JTextPan

Blueprint RouteContext Error

2020-11-19 Thread Robert Dean
I have been learning Karaf and Camel for about 8 months. I am working on designing my first Karaf / Camel solution. I am trying to understand how I can split up the solution with multiple blueprint xml files. At this point I am just trying to get the examples from 2015 working. I am using Karaf

Re: [ANNOUNCEMENT] Brand new Apache Camel website

2019-08-20 Thread Robert von Burg
ents yourself! > > zoran > > [1] > https://issues.apache.org/jira/issues/?jql=project%20%3D%20CAMEL%20AND%20component%20%3D%20website > -- > Zoran Regvart -- Robert von Burg dipl. Informatiker in Softwareentwicklung HF / pBac-Eng ODEC software development system & network administration https://strolch.li

Re: Handling errors

2017-01-03 Thread Robert Huffman
y. // See http://camel.apache.org/why-is-the-exception-null-when-i-use-onexception.html e = exchange.getProperty(Exchange.EXCEPTION_CAUGHT, Exception.class); } if (e != null) { exceptions.add(e); } } Thanks for the help. On Tue, Jan 3, 2017 at 2:31 PM, Robert Huffman wrote: > Ah, nic

Re: Handling errors

2017-01-03 Thread Robert Huffman
ue, Jan 3, 2017 at 9:31 PM, Robert Huffman > wrote: > > Well, of course I read that, but all I want is access to the actual > > Exception objects in my test. I can add the try/catch clauses, but as > > nearly as I can tell the only thing you can do with the catch is route to &g

Re: Handling errors

2017-01-03 Thread Robert Huffman
t; > On Tue, Jan 3, 2017 at 7:44 PM, Robert Huffman > wrote: > > I'm having trouble understanding how to write and use an error handler. > The > > use case is testing a custom Camel component. I would like to have an > error > > handler that just collects any exce

Handling errors

2017-01-03 Thread Robert Huffman
I'm having trouble understanding how to write and use an error handler. The use case is testing a custom Camel component. I would like to have an error handler that just collects any exceptions thrown by the endpoint's producer. I somewhat naively assumed this would be simple. I thought the Camel

Add a DataFormat programatically

2017-01-01 Thread Robert Huffman
I'm having trouble adding the ProtobufDataFormat to a route. I have ActiveMQ BytesMessages whose bodies are Protobuf messages. The documentation (http://camel.apache.org/protobuf.html) certainly looks straightforward, so here's what I have: ProtobufDataFormat protobufFormat = new ProtobufData

Route elements - Loop

2016-08-30 Thread Robert Lario
I am new to camel. I have a file that needs to be processed each day. It contains a list of members and it is in CSV (rob,12.30,yes,1). I want to iterate over each row in the file and insert the information into a sql DB. I am looking at using "unmarshal" and the "JDBC" in the route. What

Camel logs whole message body in case of org.apache.camel.CamelExchangeException "Cannot write body:"

2016-05-30 Thread Robert van der Linden
or in general? Best, Robert.

ConcurrentModificationException on seda consumer

2015-10-08 Thread Thibaut Robert
Hi, I have a simple route consuming from a seda and sending to an akka Actor (with akka-camel). On heavy load, I got the following error: java.util.ConcurrentModificationException: null at java.util.TreeMap$PrivateEntryIterator.nextEntry(TreeMap.java:1207) ~[na:1.8.0_45-internal] at java.util.Tre

cxfrs endpoint is not singleton, bus caching issue

2015-09-24 Thread Thibaut Robert
Hi, I am wondering if there is a reason to have cxfrs endpoint declared as not singleton. My concern is that I am using a producer template to send rest request to a dynamic URI like this: template.requestBodyAndHeaders("cxfrs:" + destination, ...) // destination="http://remote/service"; Each tim

Re: CxfRs producer: connection not closed

2014-12-01 Thread Thibaut Robert
but the runtime won't do it automatically. > > Finally, Response.close() closes the input stream only. > WebClient.close() can be done to release the underlying HttpConduit > instance > > Thanks, Sergey > > > On 28/11/14 09:58, Thibaut Robert wrote: > > I read the code mo

Re: CxfRs producer: connection not closed

2014-11-28 Thread Thibaut Robert
I read the code more carefully, and you're right, in the case the responseClass is provided (response is not an inputstream), it should be the responsibility of cxf to close the stream. I wrongly assumed that you use jarxrs client api where you should call close() after readEntity() Thanks for you

CxfRs producer: connection not closed

2014-11-26 Thread Thibaut Robert
Hi, When using cxfRs to send a rest message in InOnly mode, Camel do not close the javax.ws.rs.core.Response object. As we are InOnly, the reponse object is not passed through the exchange, so the caller can not close it either. Not calling close on the response maintain the input stream open (an

RE: JSCH -> Caught an exception, leaving main loop due to End of IO Stream Read

2014-11-21 Thread Robert Rich
--Original Message----- From: Robert Rich [mailto:rr...@gsti.net] Sent: Friday, August 8, 2014 12:16 PM To: users@camel.apache.org Subject: JSCH -> Caught an exception, leaving main loop due to End of IO Stream Read Hi folks, I'm getting this error regularly after uploading a file to Solar

JSCH -> Caught an exception, leaving main loop due to End of IO Stream Read

2014-08-08 Thread Robert Rich
ly every time. Any suggestions? Thanks! -- Robert Rich CTO/VP Global Security Technologies, Inc. Direct: (614) 291-3456 Fax: (614) 356-8078 www.gsti.net<http://www.gsti.net>

Transactions on POJO ProducerTemplates

2014-07-22 Thread Robert Dare
until the transaction is committed and have them all applied in one shot? Kind regards, Robert

RE: seda concurrency when sending messages to another route

2014-07-21 Thread Robert Rich
route, and goes to D. And then its done at D, there is no more routes, and the consumer at A can send back a reply to whoever called it (if its InOut) or just terminate if its InOnly mode. On Mon, Jul 21, 2014 at 4:03 PM, Robert Rich wrote: > Thanks Claus! > > Is this because it is (

RE: seda concurrency when sending messages to another route

2014-07-21 Thread Robert Rich
r using direct endpoints. And yes the seda consumer will not pickup a new message while you call other routes using direct. On Sun, Jul 20, 2014 at 6:12 PM, Robert Rich wrote: > Hi folks, > > My understanding is that the seda queue is single-threaded by default, > primarily by virtu

seda concurrency when sending messages to another route

2014-07-20 Thread Robert Rich
that the message is passed to a route and the output of that route inserted back into the processing chain of the first route, almost like a subroutine? It seems like the enricher pattern could be (ab)used this way, but it doesn't seem like that is the intent. Thanks! Bob -- Robert Rich

RE: blocking a route due to external conditions

2014-07-17 Thread Robert Rich
le of the route. On Wed, Jul 16, 2014 at 5:56 PM, Robert Rich wrote: > Hi folks, > > Just getting started with Camel and EIP/ESB/integration in general. > > I have several processes that include a shared portion that is not > thread-safe. Right now I have routes for each varia

RE: Cannot list directory error from SFTP route

2014-07-17 Thread Robert Rich
Have you checked the log on your SFTP server? Caused by: java.io.IOException: Pipe closed at java.io.PipedInputStream.read(Unknown Source) This seems like it might be an error in the server. -Original Message- From: sreejeb2 [mailto:sreejith.gopinat...@lumoenergy.com.au

blocking a route due to external conditions

2014-07-16 Thread Robert Rich
Hi folks, Just getting started with Camel and EIP/ESB/integration in general. I have several processes that include a shared portion that is not thread-safe. Right now I have routes for each variant of the process that consume its trigger (schedule, ad hoc, conditions, etc), build a message i

Apache Camel Components on YouTube

2014-03-19 Thread Robert James Liguori
Enjoy... Apache Camel Components on YouTube https://www.youtube.com/watch?v=WhJvYONjQmI -- Robert

Re: Problem in mqtt Component

2014-02-11 Thread Robert Davies
The mqtt client does (or should) support publishing - the polling feeds is the type of consumption - a poll as opposed to asynchronous delivery from the underlying matt-client implementation Could you raise a jira (with a test case) so we can track the issue ? thanks, Rob On 11 Feb 2014, at 18:

Camel concurrentConsumers and Consume annotation

2013-12-09 Thread Robert Dare
e Spring application context, loaded via the PropertyPlaceholderConfigurer? As it seems now, I would need to re-write all my @Consume annotations and XML routes to be Java based. Using a property via the application context seems like a much shorter path. Kind regards, Robert

Re: CamelContextLifecycle Has a Glaring Deficiency

2013-11-09 Thread Robert Simmons
I was wondering. It still says subversion and I wanted to create a patch on this. With git a pull request is easy. Sent from my iPad > On Nov 9, 2013, at 10:21 AM, Harald Wellmann wrote: > > Am 09.11.2013 09:10, schrieb Claus Ibsen: >> And we love contributions so you are welcome to work on a

camel vs spring integration

2013-11-02 Thread Robert James Liguori
is the direct URL: http://www.coderanch.com/t/622920/open-source/camel-spring-integration#2848108 Thank you so much, Robert Liguori

Including newlines towards stream/file endpoint

2013-10-28 Thread Robert James Liguori
How would one add a newline for each message being sent through this route?     Thanks, Robert

Apache Camel 2.12.1 Components Poster Promotion

2013-10-26 Thread Robert James Liguori
Sincerely, Robert Liguori

Apache Camel Components Poster - (FREE) PDF, JPG URL Links

2013-10-08 Thread Robert James Liguori
it is not perfect, but I did my best. Upcoming refinements are planned. -- Robert Thumbnails http://gliesian.com/camel/accp-thumb-mini.jpg http://gliesian.com/camel/accp-thumb.jpg http://gliesian.com/camel/accp-thumb-2.jpg

Apache Camel Components Poster - (FREE) PDF, JPG URL Links

2013-10-08 Thread Robert James Liguori
is not perfect, but I did my best. Upcoming refinements are planned. -- Robert Thumbnails http://gliesian.com/camel/accp-thumb-mini.jpg http://gliesian.com/camel/accp-thumb.jpg http://gliesian.com/camel/accp-thumb-2.jpg

Re: The Camel Components Poster - PDF - FREE

2013-10-08 Thread Robert James Liguori
JavaRanch Book Promotion https://www.coderanch.com/how-to/java/BookPromotionsSchedule Thanks, Robert -- View this message in context: http://camel.465427.n5.nabble.com/The-Camel-Components-Poster-PDF-FREE-tp5740752p5741127.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: The Camel Components Poster - PDF - FREE

2013-10-08 Thread Robert James Liguori
JavaRanch Book Promotion https://www.coderanch.com/how-to/java/BookPromotionsSchedule Thanks, Robert From: James Green [via Camel] To: Robert James Liguori Sent: Tuesday, October 8, 2013 3:57 AM Subject: Re: The Camel Components Poster - PDF - FREE I&#

Re: The Camel Components Poster - PDF - FREE

2013-10-08 Thread Robert James Liguori
JavaRanch Book Promotion https://www.coderanch.com/how-to/java/BookPromotionsSchedule Thanks, Robert From: James Green [via Camel] To: Robert James Liguori Sent: Tuesday, October 8, 2013 3:57 AM Subject: Re: The Camel Components Poster - PDF - FREE I&#

Re: AW: AW: Camel Routing using map message help required

2013-10-07 Thread Robert Simmons
Filter has to be first in the route. Sent from my iPad > On Oct 7, 2013, at 12:14 PM, "prabumc...@gmail.com" > wrote: > > Sorry i have copied full code here > > I hope it will give you idea what i am trying to achieve > > from(ACT_TYPE_SPECFIC_QNAME).choice() > .when(header(EVENT_TYPE).is

Re: URI Scheme Selections

2013-10-06 Thread Robert Liguori
Thank you for the explanation. Robert Sent from my iPad > On Oct 7, 2013, at 12:37 AM, "kraythe ." wrote: > > Camel URIs are part of the code of camel. They are used to select the > component that is being configured in the pipeline. They are not being used >

Re: New Camel Components Considerations

2013-10-06 Thread Robert Liguori
Just food for thought. Perhaps I should of kept my thoughts to myself. I am not coding these. Robert Sent from my iPad > On Oct 7, 2013, at 12:34 AM, "kraythe ." wrote: > > I am sure they would love to take your code. When can we expect something to > look at? ;-)

URI Scheme Selections

2013-10-06 Thread Robert James Liguori
Just wondering... Why was ssh: selected instead of fish:? Why was smtp: selected instead of mailto:? Why was websocket: selected instead of ws:/wss:? Note: I'm assuming you guys made the right decisions here, I just don't understanding the significance of the URI Schemes being formally define

New Camel Components Considerations

2013-10-06 Thread Robert James Liguori
Just food for thought... How about new components for the following: --> about:, aim:, bitcoin:, cap: (Calendar Access Protocol), data:, fax: and jira:? Reference: http://en.wikipedia.org/wiki/URI_scheme (To see URI format list, open in IE due to Firefox bug). Thanks, Robert

Re: Component List (Grouped)

2013-09-28 Thread Robert Davies
lease advice. > > Here it is: > https://cwiki.apache.org/confluence/display/CAMEL/Component+List+Grouped. > > Thanks, > Robert > > > > -- > View this message in context: > http://camel.465427.n5.nabble.com/Component-List-Grouped-tp5739388p5740133.html >

Apache Camel Components Poster

2013-09-28 Thread Robert James Liguori
, Robert

Re: Proper way to initialize Transaction management for Camel in an Application Server

2013-09-20 Thread Robert Simmons
The question would be what functionality do I loose in doing that? Will I have to set up components like ActiveMQ manually instead of just getting it out of jboss jndi? Sent from my iPad > On Sep 20, 2013, at 2:01 AM, Claus Ibsen wrote: > > Hi > > You can use SimpleCamelServletContextListene

Re: Is it possible to include XPath expression in simple expression?

2013-09-19 Thread Robert Simmons
You can use the scripts component and use xpath by itself. Sent from my iPad > On Sep 19, 2013, at 10:25 AM, bonnahu wrote: > > Hi guys, > I am wondering whether there is a way to do something like below: > > ${date:now:MMdd-HHmm}-incomingOrder-${@XPath("/order/@customerId")}-.xml > > >

Re: Proper way to initialize Transaction management for Camel in an Application Server

2013-09-19 Thread Robert Simmons
Yes I am. Same person btw, just a different email. Sent from my iPad > On Sep 19, 2013, at 4:00 AM, Claus Ibsen wrote: > > Hi > > I have logged ticket to implement the empty methods in JndiRegistry > https://issues.apache.org/jira/browse/CAMEL-6769 > > Just to be sure are you using? > http://

Is there a Method to Determine if Mock Endpoints are Real?

2013-09-16 Thread Simmons Jr, Robert
point() would throw an exception if there is no backing component. And then the code would throw exceptions if it didn't find the real component. Robert Simmons Jr. MSc. | Lead Java Architect | EA - Worldwide Customer Experience

Components with query [?options].

2013-09-15 Thread Robert James Liguori
ref: browse: paxlogging: eventadmin: spring-event: stax: xquery: vertx: activiti: Is this correct? Thanks, Robert

Component List (Grouped)

2013-09-14 Thread Robert James Liguori
I took a shot at grouping the component's list: https://cwiki.apache.org/confluence/display/CAMEL/Component+List+Grouped If anyone can refine the groupings, please advise (or update the page). Thanks, Robert

cxf:bean or cxfbean: ?

2013-09-14 Thread Robert James Liguori
Is it cxf:bean (http://camel.apache.org/components.html) or cxfbean: (http://camel.apache.org/cxf-bean-component.html) ?

cxf:bean vs. cxfbean: ?

2013-09-14 Thread Robert James Liguori
Is it cxf:bean (http://camel.apache.org/components.html) or cxfbean: (http://camel.apache.org/cxf-bean-component.html) ?

Re: camelone 2013 Presentations and Video Sessions

2013-06-27 Thread Robert Davies
There will presentations going up on the CamelOne site from those speakers who submitted them to the organisers. There were no video recording this year, it was too expensive. On 27 Jun 2013, at 09:03, pchakinala wrote: > Hi, > We work with Camel and like to know more details of camelone 2013.

Re: Serial in 2.11

2013-05-29 Thread Robert Davies
Are you just capturing the output from the Arduino ? If you have a wireless or ethernet shield you could use mqtt? On 29 May 2013, at 10:34, Mark Lawson wrote: > Hi. Are there any plans to have a serial route in 2.11 with the mina > component? I saw talk about the possibility last year. I'm usi

Re: Communication between two processes without using external messaging systems or files

2013-05-28 Thread Robert Davies
> Hi Robert, > > With two different processes I mean two different camel routes. > > Regards, > Shadab > > -Original Message- > From: Robert Davies [mailto:rajdav...@gmail.com] > Sent: Monday, May 27, 2013 10:28 PM > To: users@camel.apache.org > Subject

Re: CamelOne

2013-05-27 Thread Robert Davies
Looking forward to CamelOne - I will be there at the reception on the 9th June thanks, Rob On 27 May 2013, at 20:53, 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/committers/PMC's as >

Re: Communication between two processes without using external messaging systems or files

2013-05-27 Thread Robert Davies
I was assuming Shadab meant different operating system processes ? On 27 May 2013, at 17:53, Christian Müller wrote: > Have a look at the direct und the seda Camel component. > > Best, > Christian > > Sent from a mobile device > Am 27.05.2013 11:56 schrieb "Mohammad Shadab Ali" > : > >> Hi,

Re: Communication between two processes without using external messaging systems or files

2013-05-27 Thread Robert Davies
hi Shadab, it really sounds like you really should be using ActiveMQ. You can run it embedded - collocated with your producing process - and you don't need to use persistence see here how to set it up - http://activemq.apache.org/how-do-i-embed-a-broker-inside-a-connection.html and here's an e

Re: Problem in mqtt Component

2013-05-23 Thread Robert Davies
Hi Jinesh, which MQTT broker are you running and which version ? It looks like the client isn't able to connect for some reason. Also - which version of Apache Camel are you using ? thanks, Rob On 23 May 2013, at 13:42, Jinesh M.K wrote: > Hi, > > I have some problem with mqtt end point usi

Re: Future of Fuse IDE

2013-05-18 Thread Robert Davies
Hi Rob, > > thanks for the link this might be interesting for many people. The only thing > I am missing is a license statement. > I might have overlooked it but I did not find any license file in the tree. > > Christian > > Am 17.05.2013 20:48, schrieb Robert Davies

Re: Future of Fuse IDE

2013-05-17 Thread Robert Davies
Hi Mrinal - the src is here : https://github.com/fusesource/fuseide On 17 May 2013, at 19:43, Mrinal Kanti wrote: > Can someone send me a link to the open source version. I am unable to locate > it on the Fusesource or Redhat website. Seems to me that the only version > that is available is th

CamelOne 2013

2013-04-19 Thread Robert Davies
CamelOne 2013 is happening in Boston June 9th - 11th. There's going to be some great speakers (many Camel Committers have volunteered to present talks): website: camelone.org Lanyrd event: http://lanyrd.com/2013/camelone/ twitter: @camelone2013 Please follow! :)

CamelOne 2013 Call for Papers closing 14th April 2013.

2013-03-26 Thread Robert Davies
We want the Apache Camel community to be heard at this years CamelOne! This is the third year of CamelOne, the conference designed for professionals using open source integration and messaging solutions in the enterprise, specifically Apache Camel, ServiceMix, ActiveMQ, Karaf and CXF. The confer

CamelOne 2013 Call for papers

2013-03-11 Thread Robert Davies
This is the third year of CamelOne, the conference designed for professionals using open source integration and messaging solutions in the enterprise, specifically Apache Camel, ServiceMix, ActiveMQ, Karaf and CXF. The conference will feature a mixture of educational sessions and network events

Re: Google Plus - Apache Group

2013-02-04 Thread Robert Davies
keen on hearing more on this subject, I have no doubts you > will, but beware what you wish for. > > > Hadrian > (*) with both the PMC member *and* ASF member hats in his *hand*. > > > > > > On 02/01/2013 10:06 AM, Robert Davies wrote: > >> James - that'

Re: Google Plus - Apache Group

2013-02-01 Thread Robert Davies
James - that's a strong statement. I think the Camel PMC is more diligent than most in protecting its diversity and marks. On 1 Feb 2013, at 14:44, James Carman wrote: > I'm not a Camel committer or PMC member, but I *am* an ASF member and I find > it troubling how much Fuse/RedHat uses these

Re: Google Plus - Apache Group

2013-02-01 Thread Robert Davies
+1 On 1 Feb 2013, at 14:02, James Carman wrote: > Please don't use this Google Plus community for project-related discussions > (design discussions, etc.), though. That needs to be on the mailing lists in > order to keep the community in-the-loop. > > > On Feb 1, 2013, at 8:59 AM, Charles Mo

Re: RouteBuilder not allowed in RouteContext - why?

2012-10-19 Thread Robert
Claus Ibsen-2 wrote > We may be able to do something about this. Feel free to log a JIRA for > an improvement. Done. Thanks. https://issues.apache.org/jira/browse/CAMEL-5717. Regards, Robert -- View this message in context: http://camel.465427.n5.nabble.com/RouteBuilder-not-allo

Re: Context component not found during build

2012-10-19 Thread Robert
Context?focusedCommentId=30739765&#comment-30739765> Best regards, Robert Willem.Jiang wrote > Hi Robert, > > It is not a bug of camel. > > You need to make sure the context component can load the sub context > first. > So we need add the depends-on attribute like thi

Re: Context component not found during build

2012-10-18 Thread Robert
you think this could be a defect, not just a misconfiguration on my side, I can try further investigation. Anyways, for now I am using the 'vm' component. Does the same tricks... Thanks, Robert Willem.Jiang wrote > Hi, > > It looks like you are using camel spring Main to lo

Context component not found during build

2012-10-18 Thread Robert
ringframework:spring-test:jar:3.1.1.RELEASE:test [INFO] I created a new thread for this question since my last post is only somewhat related... Thanks in advance, Robert [1] http://camel.apache.org/context.html -- View this message in context

Re: RouteBuilder not allowed in RouteContext - why?

2012-10-18 Thread Robert
Hi, On Thu, Oct 18, 2012 at 6:15 AM, Claus Ibsen-2 [via Camel] wrote: > > On Wed, Oct 17, 2012 at 5:59 PM, Robert <[hidden email]> wrote: > > > I am wondering why use of RouteBuilder is not allowed in a RouteContext when > > using XML.[..] > > > > > &

RouteBuilder not allowed in RouteContext - why?

2012-10-17 Thread Robert
does not validate against the camel XML schema (and subsequently the context initialization fails): Thanks, Robert -- View this message in context: http://camel.465427.n5.nabble.com/RouteBuilder-not-allowed-in-RouteContext-why-tp5721184.html Sent from the Camel - Users mailing

Re: How to configure multiple consumers from @Consume + uri?

2012-04-06 Thread Robert Dare
oncurrentConsumers=10, then > you have a steady pool with 10 consumers. > > On Fri, Apr 6, 2012 at 2:48 PM, Robert Dare wrote: >> Hello everyone, and happy Friday! >> >> I have a Spring web application that uses the @Consume annotation to pull >> from an Activ

How to configure multiple consumers from @Consume + uri?

2012-04-06 Thread Robert Dare
Hello everyone, and happy Friday! I have a Spring web application that uses the @Consume annotation to pull from an ActiveMQ queue. Is it possible to configure this to create multiple consumers from the queue? I was hoping I could add something like this: @Consume(uri="activemq:queue:MyQueueNam

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
jects through NetBeans. Thanks! Robert

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
ption ... That's cool, but I want to see what the exception was... how do I get to it? Note that I'm new to Spring and Camel. Thanks, Robert

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: Using String(json) instead of object as body type:

2011-08-20 Thread Robert Dare
Do I need to register a BodyTypeConverter to do this? On 8/20/11, Robert Dare wrote: > How does one go about using character/text body types instead of > object in Camel routes? Is it as simple as just setting a string in > the producer template? > > The ActiveMQ docs indicate t

Using String(json) instead of object as body type:

2011-08-20 Thread Robert Dare
How does one go about using character/text body types instead of object in Camel routes? Is it as simple as just setting a string in the producer template? The ActiveMQ docs indicate that object body types are lowest performance. Thank you. Rob

Re: POJO Routing

2011-08-19 Thread Robert Dare
Thank you so much Claus! That did the trick. Simple was exactly what I was looking for! On Fri, Aug 19, 2011 at 10:49 AM, Claus Ibsen wrote: > On Fri, Aug 19, 2011 at 4:25 PM, Robert Dare > wrote: > > Hi Everyone, > > > > I have not been able to find any documentat

Spring XML Extensions Documentation:

2011-08-19 Thread Robert Dare
I'm trying to build my camel routes using the Spring XML Extensions. Can someone please point me to the detailed documentation on the XML? Google search results keep bringing me back to Camel examples, but nothing that details the XML elements. Thank you, Rob

POJO Routing

2011-08-19 Thread Robert Dare
Hi Everyone, I have not been able to find any documentation or examples on using the "" elements with pojo based routing. I am using the Spring XML Extensions to define a route. I can not figure out how to to test the body with a "" structure. Using the "" element is obviously wrong since the m

Re: XmlBeans - Working with the data from the routes

2011-08-03 Thread Robert J. Liguori
y... I simply want to get my unmarshalled XMLBeans objects into my application so I can manage them; I'm trying to use the same application that manages the camel routes. Does anyone see here, where I'm confused? Thanks, -- Robert Source XML->Validate XML against schema-> Go

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
d in asking if anyone can share there experiences working with the Camel XMLBeans component, if you guys don't mind? Thanks! Richard, thanks for the response. -- Robert On Sat, 30 Jul 2011 04:51:44 -0700 (PDT), Richard Kettelerij wrote: > I think you have more luck asking about the

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
Thank you Willem. -- Robert On Mon, 25 Jul 2011 10:32:35 +0800, Willem Jiang wrote: > Because we need to configure the connector for the JMS component and > we can name the component that we configure with any name and register > it to the camel context , in some example samples we

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.