Best unofficial Apache Server developers community
Username
Forgot password?
Sign in with Twitter account
Sign in with Facebook account
List archives

Apache Camel users Recent threads

Threads Replies First post Last post
Camel route configuration help
By: javakurious
Hi All, I need some help in configuring route in Spring DSL for my project. Here is the scenario: http://camel.465427.n5.nabble.com/file/n5713528/route.png It is sort of an ugly diagram but hopefully the explanation will help to understand it.…
1 May 24 2012
17:01
May 25 2012
00:52
What is the use of breadcrumbs?
By: Frank
Can any one help me in answering "What is the use of breadcrumbs?"
1 May 24 2012
19:29
May 24 2012
23:26
Overwrite blueprint properties in camel blueprint tests
By: Michael Süess
I have the following camel blueprint xml route and want to set/overwrite in my CamelBlueprintTest the blueprint properties data.in and data.out to test directories: <?xml version="1.0" encoding="UTF-8"?> <blueprint…
5 May 16 2012
10:35
May 24 2012
22:21
Unit testing a method with Exchange as a Param
By: Gershaw, Geoffrey
Hello all, I am trying to unit test the following method, which is essentially the Sending to multiple JMS destinations from one endpoint example from the camel website. Since the Exchange object is a param and contains the result, I'm having…
1 May 24 2012
16:31
May 24 2012
17:41
SEDA Queue not showing contents via JMX?
By: csete
I'm in the process of updating our infrastructure dependencies to Camel 2.9.2 in large part to be able to see what is going on inside of our SEDA queues. With the addition of the ManagedResource tagging and support, I'm seeing significantly more…
3 May 24 2012
10:25
May 24 2012
15:58
zip file best practices
By: Tyler Durvik
I am receiving data message from client and the body of the message is a zip file containing multiple files. What is the best method to process the zip data? I assume that I should use a StreamMessage. Is there support for Camel to unzip the…
3 May 23 2012
15:44
May 24 2012
15:57
Splitter - share properties between exchanges
By: greg_le_bonniec
Hi, I am using a splitter to handle a big CSV file (streaming mode). First, I need to analyse the first line (header) to know the structure of the file. I need to share the header structure to each line but the problem is that the splitter is…
2 May 24 2012
07:53
May 24 2012
15:33
SFTP Example with ant
By: aprakash
Hello All, Im new to Apache Camel. Im planning to camel-ftp to do the SFTP of a file from one machine to the local machine. Following is the program, i've created. package com.apache.test; import org.apache.camel.builder.RouteBuilder; public…
2 May 24 2012
08:02
May 24 2012
15:32
Taking a "snapshot" of an exchange...
By: James Carman
Fellow Camel riders, First a little background about what I'm trying to do: We want to introduce "auditing" (looks similar to BAM) to our camel infrastructure. The idea would be that we want to be able to see exactly what the exchange looks like…
3 May 24 2012
09:19
May 24 2012
15:29
camel-quartz and support for quartz 2.x
By: Nestor Urquiza
Hi guys, I am trying to use quartz 2.1.5 with camel 2.9.2 but they look incompatible, is that the case? Any plans to support it? I would like to manage persisted quartz jobs with jwatch which only support quartz 2.x. The reason I need jwatch is…
8 May 20 2012
09:41
May 24 2012
15:07
seda & concurrent consumers
By: ppou
I have a requirement to route exchanges sequentially to a POJO processors. I am trying something like the following: .from("direct:start") .to("xslt:xslt/transform.xsl") .to("seda:In"); …
3 May 24 2012
02:47
May 24 2012
14:56
exposing custom jmx properties
By: Preben.Asmussen
hi I have used the @ManagedResource and @ManagedAttribute on a Bean that get's used in a route. The bean and new attribute works just fine and is visible using the jmx console under processors, but the default processor attributes and operations…
1 May 23 2012
06:06
May 24 2012
13:47
Re: XML file posting to Rest Service example
By: mjelwood
I changed the route up slightly: <route> <from uri="file:\\localhost\FTPLand"/> *<convertBodyTo type="String"/>* <setHeader headerName="CamelHttpMethod"> <constant>POST</constant> …
1 May 24 2012
07:56
May 24 2012
09:42
Camel FTP/SFTP check instead of download
By: Nestor Urquiza
Hello riders, There are times when all you want is to check for the existence of a file, or the timestamp of it however that is not apparently available in the FTP/SFTP component as per http://camel.apache.org/ftp.html. Does it make sense to have…
4 May 22 2012
19:48
May 24 2012
00:32
Re: ClassCastException using cxf:bean
By: cgiera
cgiera wrote > > Hello, > > one of our customers has serious problems with our software which uses > camel 2.6.0. > Our cxf-Route throws a ClassCastException > > The route looks like this: > > …
8 Apr 19 2012
08:31
May 24 2012
00:25
Best Practice for splitting on header?
By: dunnlow
I have an existing REST web service that sends an alert based upon the provided "recipient" and "msgtext" (given in the GET url). In camel, I have a route that takes the recipient name and msg from the "sendTo" and "msg" headers and sends a…
0 May 23 2012
22:31
May 23 2012
22:31
How to structure Apache Camel Deployment in OSGi Bundles
By: Zagan
Hello, when I did the tutorial under http://camel.apache.org/tutorial-osgi-camel-part1.html http://camel.apache.org/tutorial-osgi-camel-part1.html I noticed that there are at least three possibilities to structure Camel routes and filter…
1 May 22 2012
02:42
May 23 2012
17:21
CXF - REST service response
By: kafe
Hi ! I'm currently trying to deal with REST web services together with Camel and CXF. I have the following route (simplified here) : <route id="callRestService"> <from uri="jms:queue:incomingXmlOrder" /> <bean…
4 Jan 12 2012
11:02
May 23 2012
17:03
Dynamic list of consumers for the same route
By: Christian Schneider
I would like to listen to a list of jms queues and for each queue do the same route. Currently I use a RouteBuilder that gets the jms endpoint uri in its constructor and builds the route. This routebuilder is then created once for each jms…
21 May 23 2012
06:04
May 23 2012
16:20
ExchangeTimedOutException when using vm/seda with multipleConsumers=true
By: Michael Süess
I use vm (or seda) with ?multipleConsumers=true to implement a request-reply observer pattern: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" …
4 May 16 2012
10:37
May 23 2012
13:47