Hi all,
I have a FTP consumer route which polls the FTP directory continously.
Now I want to implement a Custom Polling Stratergy which checks if the FTP
server can be connected and thus stops polling if it cannot connect.
In my begin method,how can I connect to the FTP server and capture the
can you provide following.
1. How many routes you have
2. Does each route have special processing ?
3. Does routing logic change frequently ?
4. Is any route used more than other which requires special configuration ?
- Ravi
From: Shing Hing Man [mat...@ya
Bruce
Do you want to manually inspect files and copy files to some other area for
replay ?
Are you not using any messaging channel queue to store messages ?
You can use dumpAsXml to inspect the content but use the messaging channel
queue again to replay the messages.
Some custom filter can be
I am struggling to get the following going,
I want to route REST url patterns to different services based on the URL
pattern,
Ideally I would like to, based on different REST url patterns combine
results from different services as well and
forward the result to the calling service.
The part I a
Hi,
For the CXF invocation, it need to return not only the invocation result,
but also some out parameters, so we use a Array or List to story these
results. If you just set the body with a simple object, camel-cxf can wrap
it into a List, but if you put a list as a return object, camel will not
here is same problem (with different test case). it works with return type
Pojo but failed with List
or Pojo[]; could it be fuse-esb problem??
20:35:41,671 | WARN | qtp33362237-410 | PhaseInterceptorChain|
147 - org.apache.cxf.cxf-api - 2.6.0.redhat-60024 | Interceptor for
{http://ja
Bean & Context Settings (Blueprint file):
http://www.osgi.org/xmlns/blueprint/v1.0.0";
xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0";
xmlns:camel="http://camel.apache.org/schema/blueprint";
xmlns:camelcxf="http://camel.apache.org/schema/blueprint/cxf";
xmlns:xsi="http://
Using SMX 4.5.3 and Camel 2.10.7 (the version included with SMX).
I've got my application set up to use the IBM MQ JMS APIs to transfer
messages to a WebSphere MQ server. That works fine (which surprised
me, frankly!), but if the destination doesn't exist, I see the
following in the log:
19:14:11
Hi,
I am receiving http get request messages at
http://localhost:8081/test/install
http://localhost:8081/test/registration
http://localhost:8081/test/purchase
and each of the above are processed differently.
I could have one end point
from("jetty:http://localhost:8081/test?matchOnUriPrefix
Hello,
I have created the following route that pulls from a pop3 email account,
extracts some info, and then forwards the email on to an SMTP server to
different recipients depending on the use case.
.from("pop3://...&mapMailMessage=true")
.process( new SimpleSMTPSetupProcessor()
Since MessageHelper.dumpAsXml() marshals a Message as XML, is there a method
somewhere that does the opposite, i.e. takes XML output generated by from
dumpAsXml() and produces a Message?
I'm trying to implement a dead letter channel in which I write problematic
Messages (body and header) to a fil
Hi
What do you mean the zip file is in the message body?
File attachments to mail messages are in the body, there is no other
places they can be. They just have that disposition part stuff.
A search on the web I could find this
http://email.about.com/cs/standards/a/mime.htm
On Thu, Jan 23, 201
All,
Please provide best practices on supporting guaranteed delivery with routes
that containing multiple endpoints. Our system writes to a ehCache with
persistence on the producer, then routes to all endpoints. Once all
endpoints receive the message and the route completes, the message is
removed
I figured it out, was an sl4j version issue. Seems things are working now so
I appreciate the help!
--
View this message in context:
http://camel.465427.n5.nabble.com/Unit-Testing-Question-tp5745966p5746502.html
Sent from the Camel - Users mailing list archive at Nabble.com.
Hi Camel Experts,
I'd like to know how and where to configure cxf component to use proxy. I'm
using cxf component to invoke a web service which is hosted on the internet
and is behind our corporate proxy. I'm afraid if there is no such way as of
now. My Camel version is - 2.12.2.
I might get arou
Hi Muhsin,
>From the exception cause: " SimpleIllegalSyntaxException: Binary operator ==
>does not support token & at location 18 ${body.action} ==
>'updateLogin'"
It looks to me that somehow you've got a unicode encoding of the single quote
('). Replace it with a literal single quote (') and t
Hi all ,
I am trying to define a predicate using simple expression language for my
router
.choice()
.when().simple("${body.action} == 'updateLogin'")
.bean(UpdateProfile.class, "editProfile")
.otherwise().bean(UpdateProfile.class, "noAction");
Stacktrace
Thanks Claus, using the onRedelivery() works!
Elvio
-Original Message-
From: Claus Ibsen [mailto:claus.ib...@gmail.com]
Sent: 27 January 2014 07:47
To: users@camel.apache.org
Subject: Re: cannot exchange mesasge body during a retryWhile()
Hi
retryWhile is only for returning true|false,
i just copied only top stack traces which is related.
the buttom part of stack traces looks irrelevent for me
Rgds
--
View this message in context:
http://camel.465427.n5.nabble.com/camel-cxf-return-complex-type-object-problem-tp5746478p5746496.html
Sent from the Camel - Users mailing list arc
There is a PR on Camel's GitHub mirror (
https://github.com/apache/camel/pull/83) aimed to fix CAMEL-5958.
As today that patch removes package support in bindy so it can be only
incorporate in a version on which API breaks are permitted.
https://github.com/lburgazzoli/camel
https://issues.apache.o
Thanks for the suggestion !
Shing
On Monday, January 27, 2014 4:18 AM, "ravindra.godb...@cognizant.com"
wrote:
You can set the traceFilter for tracer which is nothing but defining predicate.
Custom predicate can be defined as you want. It can be just one string or
pattern of strings[de
Hi
Yeah or the recipient list
http://camel.apache.org/how-do-i-use-dynamic-uri-in-to.html
On Mon, Jan 27, 2014 at 11:01 AM, wrote:
> You can use dynamic router feature of camel. Read the documentation carefully
> as not returning null means it will loop infinitely.
>
> http://camel.apache.org/
You can use dynamic router feature of camel. Read the documentation carefully
as not returning null means it will loop infinitely.
http://camel.apache.org/dynamic-router.html
-Original Message-
From: Muhzin [mailto:rmuh...@gmail.com]
Sent: Monday, January 27, 2014 2:51 PM
To: users@came
Hi There,
For select operations, the returned result is an instance of List> type, as returned by the JdbcTemplate.queryForList() method. For
update operations, the result is the number of updated rows, returned as an
Integer.
In a processor you can access them as below:
List> exchangeBody =
exc
Hi all,
How can route my message which is a pojo based on a specific attribute
value of it?
For eg ,
suppose that I have a have class A which has an attribute 'action' , I need
to route my message based on the value of 'action' .
--
BR
Muhsin
Hi Richard
Thanks!! That helped me :-)
Cheers
Reji
--
View this message in context:
http://camel.465427.n5.nabble.com/Moving-Objects-between-Active-MQ-queues-using-Camel-Routes-tp5746020p5746489.html
Sent from the Camel - Users mailing list archive at Nabble.com.
Hi
Can someone tell me in what format are the records returned into the
exchange once camel sql component performs a select query.
How can I access those values in an implemented Processor class down the
route?
Cheers
Reji Mathews
--
View this message in context:
http://camel.465427.n5.na
Are you sure this is the complete stacktrace? Look like some part is
missing.
On Sun, Jan 26, 2014 at 12:23 PM, nono wrote:
> Dear all,
>
> I encounter a camel-cxf 's cxf:bean problem
> it seems , it works with return type as Pojo but failed with List
> I got exception at karaf like Below. Cou
28 matches
Mail list logo