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:

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

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

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

Re: CxfRs producer: connection not closed

2014-12-01 Thread Thibaut Robert
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 more carefully, and you're right, in the case the responseClass

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

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

2014-11-21 Thread Robert Rich
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 SolarWinds SFTP server

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

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

Transactions on POJO ProducerTemplates

2014-07-22 Thread Robert Dare
the transactions at the Producer endpoint? Is it possible for the ProducerTemplate to buffer the events 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
. 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 rr...@gsti.net wrote: Hi folks, My understanding is that the seda queue is single-threaded by default, primarily by virtue of 'concurrentConsumers

RE: seda concurrency when sending messages to another route

2014-07-21 Thread Robert Rich
. 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 rr...@gsti.net wrote: Thanks Claus! Is this because it is (as described

seda concurrency when sending messages to another route

2014-07-20 Thread Robert Rich
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 CTO/VP Global Security Technologies, Inc. Direct: (614) 291

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

RE: blocking a route due to external conditions

2014-07-17 Thread Robert Rich
. On Wed, Jul 16, 2014 at 5:56 PM, Robert Rich rr...@gsti.net 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 variant of the process

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

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

Camel concurrentConsumers and Consume annotation

2013-12-09 Thread Robert Dare
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 hwellmann...@gmail.com wrote: Am 09.11.2013 09:10, schrieb Claus Ibsen: And we love contributions so you are

camel vs spring integration

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

Apache Camel 2.12.1 Components Poster Promotion

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

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] ml-node+s465427n5741091...@n5.nabble.com To: Robert James Liguori glies...@yahoo.com Sent: Tuesday, October 8, 2013 3:57 AM Subject

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] ml-node+s465427n5741091...@n5.nabble.com To: Robert James Liguori glies...@yahoo.com Sent: Tuesday, October 8, 2013 3:57 AM Subject

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.

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

2013-10-08 Thread Robert James Liguori
that 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
that 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

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 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()

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 . kray...@gmail.com wrote: I am sure they would love to take your code. When can we expect something to look at? ;-) Robert

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 . kray...@gmail.com 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 to indicate a web

Re: Component List (Grouped)

2013-09-29 Thread Robert Davies
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 Sent from the Camel - Users mailing list archive

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 claus.ib...@gmail.com wrote: Hi You can use

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 claus.ib...@gmail.com 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

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 bonn...@gmail.com wrote: Hi guys, I am wondering whether there is a way to do something like below:

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

2013-09-17 Thread Simmons Jr, Robert
. 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

cxf:bean vs. cxfbean: ?

2013-09-15 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 or cxfbean: ?

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

Component List (Grouped)

2013-09-15 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

Components with query [?options].

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

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 praveen.chakin...@ebix.com wrote: Hi, We work with Camel and like to know more

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 ma...@emconnect.com wrote: Hi. Are there any plans to have a serial route in 2.11 with the mina component? I saw talk about the possibility

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

2013-05-28 Thread Robert Davies
...@genpact.com wrote: 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: Communication between

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

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 christian.muel...@gmail.com 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

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 christian.muel...@gmail.com wrote: CamelOne 2013 (http://camelone.org/) is in about two weeks! Who will be there? I want to meet as many Camel

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 mkjin...@gmail.com wrote: Hi, I have some problem with

Re: Future of Fuse IDE

2013-05-18 Thread Robert Davies
-schneider.net wrote: 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: Hi Mrinal

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 mrinal_ka...@yahoo.com 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

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

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
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'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 jcar

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 jcar...@carmanconsulting.com wrote: I'm not a Camel committer or PMC member, but I *am* an ASF member and I find it troubling how

Re: Context component not found during build

2012-10-19 Thread Robert
?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 this camel:camelContext id=mainCamelContext

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-allowed

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] ml-node+s465427n5721208...@n5.nabble.com 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.[..] camel:routeContext id

Context component not found during build

2012-10-18 Thread Robert
] 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: http://camel.465427.n5.nabble.com/Context-component-not-found-during-build

Re: Context component not found during build

2012-10-18 Thread Robert
just not picked up during route construction. If 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

RouteBuilder not allowed in RouteContext - why?

2012-10-17 Thread Robert
/ camel:routeContext id=fooRouteContext camel:routeBuilder ref=fooRouteBuilder/ /camel:routeContext camel:camelContext camel:routeContextRef ref=fooRouteContext/ /camel:camelContext Thanks, Robert -- View this message in context: http://camel.465427.n5.nabble.com/RouteBuilder-not-allowed

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:

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

2012-04-06 Thread Robert Dare
concurrentConsumers=10, then you have a steady pool with 10 consumers. On Fri, Apr 6, 2012 at 2:48 PM, Robert Dare robert.d...@gmail.com wrote: 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

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! Robert

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 ca...@gliesian.com wrote: I believe that the build menu option in NetBeans invokes, mvn install. How do I do any of the following in NetBeans? -- mvn compile

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: to uri=file:folder/ AND to uri=activemq:topic:topic_name/ 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
/exception to uri=mock:invalid/ /doCatch ... 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: to uri=validator:file:schemas/schema_name.xsd/ How do I get to the error messages for invalid XML files that do not pass validation? Thanks!

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: 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 robert.d...@gmail.com 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

POJO Routing

2011-08-19 Thread Robert Dare
Hi Everyone, I have not been able to find any documentation or examples on using the choice 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 when structure. Using the xpath element is obviously wrong

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

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 claus.ib...@gmail.com wrote: On Fri, Aug 19, 2011 at 4:25 PM, Robert Dare robert.d...@gmail.com wrote: Hi Everyone, I have not been able to find any

Re: XmlBeans - Working with the data from the routes

2011-08-03 Thread Robert J. Liguori
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- Good XML On Wed, 3 Aug 2011 08:34:02 +0100

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
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 richardkettele...@gmail.com wrote: I think you have more luck asking about the activity of the XMLBeans project on the XMLBeans mailing list

Camel and XMLBeans

2011-07-29 Thread Robert J. Liguori
. 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.

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: 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 ca...@gliesian.com 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! -- Sincerely, Robert J. Liguori STG

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.

Discussion - example projects coverage of key components

2011-07-24 Thread Robert J. Liguori
xmpp://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.

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 willem.ji...@gmail.com 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

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
- -- View this message in context: http://camel.465427.n5.nabble.com/General-guidance-for-simple-camel-supported-app-tp4597618p4597855.html Sent from the Camel - Users mailing list archive at Nabble.com. -- Sincerely, Robert J. Liguori STG Technologies