Apache Camel is a powerful open source integration framework based on known Enterprise Integration Patterns with powerful Bean Integration
0
votes
1answer
13 views
Is it possible to use both routeContextRef and dataFormats elements in a camelContext?
When I attempt to do so, I get:
Caused by: org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 35 in XML document from class path resource [META-INF/spring/camel-context.xml] ...
0
votes
0answers
13 views
Apache Camel scp multiple files to server
I currently have a route that receives data from a queue and splits it into 2 files with a requirements to copy the files to a remote server.
How can i copy both files to the remote server?
I can ...
0
votes
1answer
23 views
Apache Camel http4 POST throwing java.lang.NoSuchMethodError
i'm trying to read file with xml and then post it to URL using HTTP4. But keep getting the following exception.
i'm using Apache Camel version 2.11.0, with JDK 1.7 on Linux
Here is code:
public ...
0
votes
2answers
34 views
Spring Camel Email Configuration Issue
I am trying to send email from my spring mvc based web application using apache camel. But my tomcat is not getting up because of some wrong configuration i guess.
Can you please help me?
...
2
votes
1answer
48 views
Connections are hanging in CLOSE_WAIT even after successful shutdown of Camel context/ routes
I have one question regarding Camel route shut down.
Below is the code snippet for the route -
from("seda:" + this.getDumpIdentifier() + "_insertInSolr?concurrentConsumers=50&pollTimeout=1")
...
-1
votes
0answers
11 views
How to load xquery template from database in camel's xquery endpoint
I have a camel xquery endpoint like this:
...
...
It can read the static xquery template file and process the data xml. However, I'd like to store the xquery template into the database and reload ...
0
votes
1answer
22 views
How can I bridge HTTP and SMPP with Camel?
The following code tries to set up a Camel route to receive HTTP POSTs and send them as SMS messages via SMPP:
import org.apache.camel.CamelContext;
import org.apache.camel.builder.RouteBuilder;
...
0
votes
1answer
32 views
What are the implications of using a Dynamic Router versus a DSL choice in Apache Camel?
It appears that a Dynamic Router can be used in much the same way as choice in a route. Furthermore, in the Java DSL choice() can be rather dynamic based on changing headers or properties in routes.
...
1
vote
2answers
19 views
camel bindy csv with field concatination?
I'm trying to parse a log file that has csv separated recs.
All lines are to be separated to 8 fields.
In some lines the last field, Field8 ,has extra commas which has to be ignored (should not be ...
2
votes
1answer
41 views
Where is my expired JMS message?
I am using ActiveMQ 5.8.0 and Camel 2.10.4. I am reading ExchangePattern.InOnly messages from a JMS queue, and want to expire those which are not processed within a given time explicitly to a named ...
0
votes
1answer
22 views
ProducerTemplate unable to sendBody to Direct Endpoint
I would like to use Camel as an integration point for an application I am developing. My intention is to, from my application, inject messages into camel as well as receive messages from camel and ...
0
votes
0answers
31 views
onCompletion being triggred, not onException
This is a varition of the question, I asked in Camel's CXF component not catching onException(Exception.class)
I have implemented the solution which Claus suggested in the above but its not ...
0
votes
1answer
32 views
dismiss message in Apache Camel
Hope this doesn't sound ridiculous, but how can I discard a message in Camel on purpose?
Until now, I sent them to the Log-Component, but meanwhile I don't even want to log the withdrawal.
Is there ...
0
votes
1answer
23 views
How to add siteCommand in camel-ftp URL?
I am trying to upload a file from my local directory to IBM mainframe FTPS server, which needs SITE commands to set the record length.
I need to include the siteCOmmand as part of the URL.
Any ...
0
votes
0answers
18 views
Does camel-stream (with JDK7) reopen file?
I need to tail & process a log file (rotating log file) with camel2.11 and Jdk7 (linux-RHEL6)
Does camel-stream with JDK7 reopen the file, (or provide tail behavior without reopen)?
...
0
votes
1answer
21 views
In camel can I use marshalling in my bean processor?
I have a camel route defined in Spring-XML and I'm using marshall and unmarshall to convert between JSON and my domain object. All works great, here's my question though:
I'm calling a method on bean ...
0
votes
1answer
33 views
Apache Camel: Nested filters (filter … filter … end …filter … end ..end) in DSL (Groovy or Java)
we have some issues with the DSL for Camel Routes. It seems that it is not possible to translate the following XML Configuration into the Groovy (or JAVA) DSL
<route id="myroute" >
...
0
votes
3answers
45 views
ActiveMQ starts to fail in Fuse Jboss when a feature is deployed
Im having a problem when I deploy a feature. The feature contains three bundles, and Karaf deploys well these bundles, but when they are deployed ActiveMQ starts to having problems.
The deployed ...
0
votes
0answers
34 views
Apache camel update values in database hibernate
So I am constant updating the values in mySQL database using routebuilders
from apache camel.
for example:
Route builder
from("hibernate:be.kdg.teamf.model.Build?delay=1s")//update every second
...
0
votes
1answer
31 views
Apache Camel slow startup of routes
I am using Apache camel to implement dispatcher EIP. There are thousands of messages in a queue which needs to be delivered at different URLs. Each message has its own delivery URL and delivery ...
1
vote
0answers
38 views
Camel 2.10 and Spring JAXB complaining about Handling Interfaces
We recently upgraded the version of Open JDK 7 to version 1.7.0_u21 and have started to run into issues with Camel and JAXB that is included in that version. Versions starting with 1.7.0_u9 or below ...
0
votes
1answer
27 views
Start a route on suspend state and scheduling the resume
I need the following behaviour for some Camel routes: a route must start in active state, but must also be suspended if the current time is between X AM and Y PM.
All the routes start with a timer in ...
1
vote
1answer
51 views
Camel's CXF component not catching onException(Exception.class)
I have a camel-cxf webservice up. I use to handle all SOAP Faults in the CXF's SOAP Fault Interceptor mechanism. That is working well.
I thought that its better to handle Exception thrown at the ...
0
votes
1answer
40 views
Using Camel-hdfs in a karaf bundle
I am trying to implement an camel route to send files in a HDFS server with an OSGI bundle, using java language with no blue print, but i can't make it work due tu hdfs scheme not being found while ...
1
vote
1answer
51 views
Apache Camel - JMS Remoting: Exception not thrown back to the producer
I'm looking for a solution to make the exception thrown on the consumer side returned to the producer side when using Apache Camel - JMS Remoting.
I found there is a similar question asked already at ...
2
votes
0answers
23 views
Camel route “to” specific websocket endpoint
I have some camel routes with mina sockets and jetty websockets. I am able to broadcast a message to all the clients connected to the websocket but how do i send a message to a specific endpoint. How ...
0
votes
2answers
47 views
JSON unmarshalling to POJO and inserting
I would like to unmarshal a json string to a pojo class.
I am reading it from an existing url:
https://builds.apache.org/job/Accumulo-1.5/api/json
I am using apache camel to unmarshal the url
...
0
votes
0answers
31 views
Stop route when all messages are filtered
I have a batch route that consumes XML files from a folder. It filters, transforms and finally saves a grouped document to disk. As this is a batch route, I require it to be shut down after a single ...
0
votes
0answers
33 views
Need some help understanding Apache-camel bindy
At this moment I have a JTable I want to export to a .csv file.
I've had another question put on this site, but this one is specific to my Bindy problem.
With bindy it is possible to annotate all the ...
1
vote
1answer
27 views
How do We pick 2 Files in a single route in Apache Camel, and process them simultaneously?
I have 2 files at the same file location..... I want both the files to be picked up at the same time, so that I can get hold of both in my Processor at the same time...
I am using Apache Camel for ...
0
votes
2answers
52 views
How to export a JTable to a .csv file?
Like the title implies, i am looking for a way to export a jtable with data to a .csv file. I am not looking for other options then CSV, because CSV is the requirement for my program.
I have been ...
1
vote
1answer
41 views
Interrupt camel route flow based on a condition
I have an application and two application servers. I deployed the same application to each of my application server but I also made them run as active-passive. To do this, I am using a lock.
Now I ...
0
votes
2answers
126 views
Camel Redis Component subscribe to a channel not working
I've a simple route that listens to a Redis channel. For some reason it's not working.
Here is my route. I verified that data is being published into the Redis channel and I can read it back using a ...
3
votes
5answers
195 views
EntityManager from LocalContainerEntityManagerFactoryBean does not persist entities into the database
The problem is that the EntityManager injected with @PersistenceContext in a Spring managed bean does not persist the entities to the database. I have tried using @Transactional on the AddDao bean, ...
0
votes
1answer
18 views
Can I have multiple bindy annotated classes in a package and still unmarshal CSVs in Camel?
I would like to have a package like my.company.bindy with several classes in it all annotated with Bindy annotations. Then I'd like to have Camel routes that can unmarshal CSV into one of these types. ...
1
vote
1answer
16 views
Camel mina output has junk before it
Hey i am running some camel routes inside active mq. Just trying to push a hello world out the mina socket everytime the url is hit.
from("jetty:http://0.0.0.0:8080/popurl").process(new Processor() {
...
1
vote
0answers
35 views
Incompatible argument to function camelContext with spring xml
Hi excuse me for my small knowledge but I am a beginner in using spring and camel. I am trying to make a simple camelContext bean that routes a message from an endpoint to another spring bean called ...
0
votes
0answers
24 views
Apache camel - Multiple inbound endpoints, different error handling
We have a camel-route and some error handling challenges.
There are two inbound endpoints, one cxf-webservice, one activeMQ.
Both endpoints are routed to the same direct:endpoint for processing ...
0
votes
0answers
38 views
Grouping files for XQuery Collections
I have an XQuery script that calculates statistics on a few thousand uniform XML files. I can run this query on the file system by using the collection method like so:
let $doc := ...
-1
votes
0answers
34 views
Performance of app that uses Camel [closed]
We are going to create program with high requirements to performance. It's about 5000 business transactions (BT) per second. We usually use Camel for business workflow. But what about performance. ...
0
votes
1answer
30 views
camel change route policy at runtime via jmx
is it possible to change at runtime the route policy? for instance, if i have the code below
CronScheduledRoutePolicy startPolicy = new CronScheduledRoutePolicy();
startPolicy.setRouteStartTime("* 0 ...
0
votes
4answers
114 views
Exception running a simple websocket with Camel component on Jetty
I'm trying to run use Camel Websocket component on Jetty but cannot get rid of the following exception. I'm not sure if this a issue with Jetty running with Camel or issues with versions compatibility ...
1
vote
1answer
46 views
Saving WS payload into database in Camel
I'm absolutely newbie in Apache Camel. I'd like to create a very simple app in which it would accept WS calls and save the payload into a database using JPA.
The payload's structure is quite simple. ...
1
vote
1answer
67 views
Back to Basics : Apache Camel Routes and Direct Component
I am bit confused about Camel routes and its two endpoints : Direct and Seda. Well let's say i have a route like this :
public void configure()
{
from("direct:services")
.process(//Some processing ...
0
votes
1answer
35 views
Duplicate REST requests to second endpoint
In order to test how a REST service performs under load I would like to send production data to two service end points, one production service and one test service. I would like the responses from ...
1
vote
0answers
37 views
How do I use Apache Camel's Spring Remoting Proxy with XML as the transport?
I am using Apache Camel's Spring Remoting, version 2.11.0. I have the following in my beans.xml:
<camel:camelContext id="camel-client">
<camel:dataFormats>
<camel:jaxb ...
1
vote
2answers
66 views
Camel JMS Proxy Timeout occurred after 20000 millis waiting for reply message
I am using a Camel Proxy which returns a result from another process.
public interface DataProcessingInterface {
public List<ResponseData> processPreview(ClientData criteria, Config config);
...
0
votes
0answers
35 views
Fuse ESB and web services - how to expose routes as web services or wrap existing services as web services
I am really getting stuck on how to integrate my business applications to Fuse ESB. In particular - web services functionality. I have a couple of questions -
1) Can I 'wrap' a blueprint.xml in Fuse ...
1
vote
1answer
36 views
Camel route responding to web application synchronously
I understand you can embed Camel in web application or stand alone application by creating a Camel context. This means that routes could be started from within your application. Great!
How can I go ...
0
votes
1answer
31 views
Apache Camel - sending a Properties object over the route
I have a Properties object that contains all the fields to be sent as a message to consumer's queue.
What is the recommended way to pass Properties-like objects? Shall I set a header for every key in ...


