Camel Without Maven

2015-12-07 Thread gbchriste
I'm planning to re-architect an existing Java application to incorporate messaging via JMS to integrate with a Windows back end system. I've done some rapid prototyping with ActiveMQ and I've also been reading through Camel in Action (Ibsen, et al) and am convinced that this is the combination I w

Re: Camel Without Maven

2015-12-07 Thread gbchriste
ependencies into your local repo and stay inside > the classified (I’m assuming) > network. > > >> On Dec 7, 2015, at 8:59 AM, gbchriste < > gary.christenot@ > > wrote: >> >> I'm planning to re-architect an existing Java application to incorpor

Re: Camel Without Maven

2015-12-07 Thread gbchriste
ter innovation. Powered by community collaboration. > See how it works at redhat.com <http://www.redhat.com/>; > > On Mon, Dec 7, 2015 at 1:15 PM, gbchriste < > gary.christenot@ > > wrote: > >> Mark Frazier-2 wrote >> > I would look into setting up y

Re: Camel Without Maven

2015-12-08 Thread gbchriste
setup everything for them. > No more need to store eclipse/idea project settings together with the > source code. Or having JARs in the source in a lib directory as we did > 10 years ago. > > > > > > On Mon, Dec 7, 2015 at 5:59 PM, gbchriste < > gary.chr

ActiveMQ Component Questions

2015-12-10 Thread gbchriste
Total newbie here with Camel and ActiveMQ. I've done a bit of prototyping coding directly against ActiveMQ in Java and .Net but now that I'm thinking of folding Camel into my plans, I've started looking at the Camel ActiveMQ component. Couple of questions. First, does activemq use a default brok

The Camel Name - Just A Thought

2015-12-10 Thread gbchriste
Section 1.1 of Camel In Action says, "The Apache Camel project was named Camel simply because the name is short and easy to remember." But here's a thought. When you think about it, the name "Camel" is so appropriate to the notion of what Camel does that you'd think the name was chosen on purpose

Route Setup Advice

2015-12-10 Thread gbchriste
The application I'm dealing with receives and processes XML messages from a back end service. The messages fall in to 2 basic categories which I'll call fast messages and slow messages. Fast messages are all of the same type and format, just different values in the XML elements. They are all han

Re: Route Setup Advice

2015-12-10 Thread gbchriste
Yes. If you look at the example code I have 2 routes, one subscribing to activemq:topic:fastmessages and one subscribing to activemq:topic:slowmessages All of the messages coming down the pipe from the fastmessages topic go straight to the handler for that message type. In the real app this happ

Re: Route Setup Advice

2015-12-10 Thread gbchriste
I like the succinctness of this but I think I'll stick with an explicit route for each messagtype/processor for now. One of the main goals I'm trying to achieve is to straighten out and clarify a rather convoluted and difficult-to-comprehend pile of code created by the contractor that wrote the or

Connection Pooling with ActiveMQ Component

2015-12-27 Thread gbchriste
Am I correct in my understanding that if I'm using the ActiveMQ component instead of the JMS component then connection pooling is automatically turned on? If so, how do I configure the pool properties? I need examples in Java DSL rather than Spring as my intent is to do all my Camel configuration