Tagged Questions

0
votes
1answer
19 views

CamelContext.start() doesn’t block

Hi, I want to run a simple Apache Camel example that copies files from one directory to another: CamelContext context = new DefaultCamelContext(); context.addRoutes(new RouteBuilder() { public …
0
votes
0answers
23 views

Groovy statement fails if used inside Camel route

Defined routes: from("direct:friends").process({exchange -> exchange.'out'.body = exchange.'in'.body.profile} as Processor).splitter(body(List), true).to("activemq:profiles") …
0
votes
2answers
150 views

Accessing domain classes or spring beans from camel routes in Grails

I have a camel route file which I want to populate/configure based on certain database records accessed through Grails domain classes. However, I cannot seem to access the domain classes (or anything …
0
votes
1answer
470 views

Apache Camel Spring configuration problem - Unable to locate Spring NamespaceHandler for XML schema namespace [http://camel.apache.org/schema/spring]

I've posted an excerpt from my spring.xml file and the stack trace I'm getting. <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" …
0
votes
1answer
23 views

Some special Apache Camel functions are not available

trying to use this route: from("activemq:profiles").aggregate(header("cheese")).batchSize(30).bean(ProfilesQueueService, "saveContacts") Fails with: No signature of method: …
0
votes
2answers
245 views

Installing Grails with Apache Camel plugin

I'm having trouble getting the Apache Camel plugin to run in grails-1.1.1. Here's the steps I took: $ grails create-app camelapp Welcome to Grails 1.1.1 - http://grails.org/ ... $ cd camelapp $ …
1
vote
2answers
101 views

How to change Processor properties during runtime using Camel?

I have a Camel Route Definition written in Java DSL like this: from(myEndpoint) .throttle(200) .to(myOtherEndpoint); This connects my two endpoints using a Throttler which limits the message flow …
0
votes
5answers
758 views

Unable to start Camel 1.5.0

Hi, I'm trying to run the Camel Example "camel-example-spring-jms" (also at http://activemq.apache.org/camel/tutorial-jmsremoting.html). However, when I try to start Camel using …
1
vote
1answer
176 views

Apache Camel for Asynchronous Calls

Does it make sense to use Apache Camel for Asynchronous requests? Or should I use simple MoM using a JMS server. There are no Enterprise Integration Patterns that I'll require. Any help would be …
1
vote
4answers
517 views

Dynamic throtlling off an ActiveMQ message queue with Camel

I am an ActiveMQ / Camel noob with a specific scenario in mind, I wonder firstly if it is possible and secondly whether someone might provide a little direction. Basically I need to perform dynamic …
1
vote
1answer
121 views

How do I specify a TCP transport is server mode (listening) or client mode in activemq?

The example given for a spring injected endpoint is as follows: <endpoint id="hl7listener" uri="mina:tcp://localhost:8888?sync=true&amp;codec=hl7codec"/> How do I setup a client mode …
1
vote
1answer
64 views

Apache Camel question on routing via javaDSL

When using routing in a Camel context via RouteBuilder, What is the practical difference between: 1) from(A).to(B).to(C); 2) from(A).to(B); from(B).to(C)
1
vote
2answers
338 views

Simple Routing of TCP Endpoints in activemq whats wrong??

I am trying to get a simple demo started with ActiveMQ that will demonstrate a TCP to TCP route. I am coding the endpoints and routes in a camel context in my activemq.xml configuration file. …
1
vote
1answer
333 views

ActiveMQ setup of tcp socket using mina

I am trying to setup a simple demo of activemq and mina. I edited the camelContext in the activemq.xml file to include two mina tcp sockets, two queues and routes as such: listenerA -> qA -> …