Re: camel-ftp via proxy

2010-11-24 Thread jmh
Thanks Richard for your warning -- View this message in context: http://camel.465427.n5.nabble.com/camel-ftp-via-proxy-tp3278292p3279149.html Sent from the Camel - Users mailing list archive at Nabble.com.

camel-ftp and crontab

2010-11-25 Thread jmh
Hello, I need to start a camel-ftp component periodicaly with a cron expression (every friday at 10pm) The problem is that camel-ftp does not have this option out-of-the-box (only a delay) So I have imagined this solution that seems to work fine ! What do camel-gurus think about ?

camel-ftp and crontab

2010-11-25 Thread jmh
Hello, I need to start a camel-ftp component periodicaly with a cron expression (every friday at 10pm) The problem is that camel-ftp does not have this option out-of-the-box (only a delay) So I have imagined this solution that seems to work fine ! What do camel-gurus think about ?

test

2010-11-25 Thread jmh
-- View this message in context: http://camel.465427.n5.nabble.com/test-tp3280678p3280678.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: camel-ftp and crontab

2010-11-26 Thread jmh
Thanks a lot, your solution sounds better and cleaner than mine ;-) J-M -- View this message in context: http://camel.465427.n5.nabble.com/camel-ftp-and-crontab-tp3280671p3280980.html Sent from the Camel - Users mailing list archive at Nabble.com.

ScheduledRoutePolicy is not available in camel 2.4

2010-11-26 Thread jmh
That sounds great...for later ! because ScheduledRoutePolicy is available in Camel 2.6 and for now I'm using camel 2.4 :-( -- View this message in context: http://camel.465427.n5.nabble.com/camel-ftp-and-crontab-tp3280671p3281006.html Sent from the Camel - Users mailing list archive at Nab

aggregation strategy + JMS concurrentConsumers + splitter in streaming mode

2010-12-06 Thread jmh
Hello, a common requirement with JMS is to consume messages concurrently in multiple threads in order to make an application more responsive. I agree but I have a question about aggregation strategy with the architecture below : in my spring context : ...

Re: aggregation strategy + JMS concurrentConsumers + splitter in streaming mode

2010-12-06 Thread jmh
Hi Claus, yes I'm using ActiveMQ and your suggestion could solve my problem :-) Thank a lot JM -- View this message in context: http://camel.465427.n5.nabble.com/How-create-aggregation-strategy-with-JMS-concurrent-Consumers-and-a-splitter-in-streaming-mode-tp3293712p3293723.html Sent from th

idempotentConsumer and eager option

2010-12-06 Thread jmh
Hi, how to configure eager=true in this use case: from("activemq:inprogress?transferExchange=true") .routeId("inProgress") .idempotentConsumer( simple("${property.gedFileName}#$

Re: idempotentConsumer and eager option

2010-12-06 Thread jmh
found ! thank you Claus -- View this message in context: http://camel.465427.n5.nabble.com/idempotentConsumer-and-eager-option-tp3293765p3293804.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: How about to support dynamic configurations in camel?

2010-12-12 Thread jmh
Hi, I agree with you about your dynamic configuration suggestion for Camel I'm also using Karaf (OSGi) and its hot-reloading property files feature Regards J-M -- View this message in context: http://camel.465427.n5.nabble.com/idempotentConsumer-and-eager-option-tp3293765p3302085.html Sent f

Refreshing at runtime an Idempotent Consumer

2010-12-12 Thread jmh
Hi Camel riders, what is the best way to refresh at runtime a file-based Idempotent Consumer ? Thanks in advance for your suggestions... Jean-Marc -- View this message in context: http://camel.465427.n5.nabble.com/Refreshing-at-runtime-an-Idempotent-Consumer-tp3302147p3302147.html Sent from t

Re: Refreshing at runtime an Idempotent Consumer

2010-12-13 Thread jmh
Hi Claus, suppose I need to re(send) a set of messages (validation failed before but now is OK) without stopping Camel. My idea was to suppress some keys in the idempotent file to allow the the set of messages to be performed again. But I don't know if it's possible to reload the idempotent fil

Re: Refreshing at runtime an Idempotent Consumer

2010-12-13 Thread jmh
Hi Claus, suppose I need to re(send) a set of messages (validation failed before but now is OK) without stopping Camel. My idea was to suppress some keys in the idempotent file to allow the the set of messages to be performed again. But I don't know if it's possible to reload the idempotent

Alert by mail onException...but only one mail

2011-01-07 Thread jmh
Hello, first of all, best wishes for 2011 and long life to Camel ! My question is : I have a route which consumes a text file (from("file:...")) containing some lines (with "\n" as separator) Suppose I have a problem when I'm processing a line in my route and it remains 1000 lines to process,

camel-leveldb : U​n​a​b​l​e​ ​t​o​ ​c​o​n​f​i​r​m​ ​e​x​c​h​a​n​g​e​I​d

2014-09-09 Thread jmh
Hello, I'm using camel-leveldb (Camel 2.13) instead of hawtdb (Camel 2.7) for aggregation. However I see this warning message in my logs for each aggregation ended with success : WARN : U​n​a​b​l​e​ ​t​o​ ​c​o​n​f​i​r​m​ ​e​x​c​h​a​n​g​e​I​d​ ​[​I​D​-​N​R​B​N​R​W​0​2​2​0​A​-​5​0​7​7​1​-​1​4​1​

Cannot stop inputstream during ftp transfer

2012-09-14 Thread jmh
Hello, I would like to understand why my inputstream (from File: to sftp:) is not stopped after the shutdown timeout when I stop my bundle. I put in the camel-context.xml config file : This seems to not have any effect on the current inputstream since it continues until the file is completly u

Re: Cannot stop inputstream during ftp transfer

2012-09-14 Thread jmh
Hi Claus, I use camel 2.7.1 Yes I run Camel in OSGi container (Felix) apache-servicemix-4.4.0-fuse-00-43 I stop only the bundle (stop bundleId) but the JVM is still alive J-M -- View this message in context: http://camel.465427.n5.nabble.com/Cannot-stop-inputstream-during-ftp-transfer-tp571

Re: Cannot stop inputstream during ftp transfer

2012-09-14 Thread jmh
Hi Calus, I use Camel 2.7.1 Yes, Camel is embedded in OSGi container Felix (apache-servicemix-4.4.0-fuse-00-43) I stop Camel with the OSGi command "stop bundleId" so the JVM is still running J-M -- View this message in context: http://camel.465427.n5.nabble.com/Cannot-stop-inputstream-dur

RE: Cannot stop inputstream during ftp transfer

2012-09-14 Thread jmh
ilto:ml-node+s465427n571936...@n5.nabble.com] Envoyé : vendredi 14 septembre 2012 14:20 À : HERZET Jean-Marc Objet : Re: Cannot stop inputstream during ftp transfer On Fri, Sep 14, 2012 at 1:18 PM, jmh <[hidden email]> wrote: > Hi Calus, > > I use Camel 2.7.1 > > Yes, C

print a PDF with camel-printer

2012-09-19 Thread jmh
Hello, what is the right syntax (options ?) to print a pdf with camel-printer ? I don't find any example... J-M -- View this message in context: http://camel.465427.n5.nabble.com/print-a-PDF-with-camel-printer-tp5719615.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: print a PDF with camel-printer

2012-09-19 Thread jmh
thanks Babak But I have another problem on Windows 2008 server. services (printers) are prefixed by "Win32 Printer :" i.e :[Win32 Printer : Microsoft XPS Document Writer, Win32 Printer : \\nrbnrw0264\nrbco006] But when I look the source code, I realize that it can never be equal to the config

Re: print a PDF with camel-printer

2012-09-20 Thread jmh
Yes, I wanted to suggest to add this option ;-) Thanks for your help J-M -- View this message in context: http://camel.465427.n5.nabble.com/print-a-PDF-with-camel-printer-tp5719615p5719650.html Sent from the Camel - Users mailing list archive at Nabble.com.

HawtDBAggregationRepository bufferSize

2011-12-25 Thread jmh
Hello, When I use HawtDB with the aggregator, I would like to know if the completed exchanges are deleted in the HawtDBAggregationRepository. I would like to be sure that the HawtDBAggregationRepository is not growing more and more till reach its bufferSize. Thanks in advance for your reply Re

Re: HawtDBAggregationRepository bufferSize

2011-12-26 Thread jmh
Tanks Willem ! Regards J-M -- View this message in context: http://camel.465427.n5.nabble.com/HawtDBAggregationRepository-bufferSize-tp5100028p5101312.html Sent from the Camel - Users mailing list archive at Nabble.com.

can the aggregationRepository join a JMS transaction ?

2011-12-30 Thread jmh
Hello, I don't want to lose any message if my application crashes during an aggregation so I add an aggregationRepository in my JMS transaction... Can the aggregationRepositoryRef join the JMS transaction in this following route ? from("activemq:file2doc.prepareReturnFile")

Re: can the aggregationRepository join a JMS transaction ?

2012-01-01 Thread jmh
Thanks Claus ! I have already bought your book but I need to read the chapter #9 more in depth ;-) Best wishes to you and Camel ! -- View this message in context: http://camel.465427.n5.nabble.com/can-the-aggregationRepository-join-a-JMS-transaction-tp5110230p5113123.html Sent from the Camel -

fork & join pattern with Camel

2012-01-15 Thread jmh
Hello, could you tell me what is the best way in Camel to implement the fork & join pattern (wait, and/or condition) ? I don't want to use BPEL since my workflow is implemented using pure Java code rather than declarative XML. Thanks for your help Regards -- View this message in context: http

spagic and Camel

2012-01-19 Thread jmh
Hello, simple quesiton : is it possible to use Spagic to monitor Camel components ? Regards J-M -- View this message in context: http://camel.465427.n5.nabble.com/spagic-and-Camel-tp5157280p5157280.html Sent from the Camel - Users mailing list archive at Nabble.com.

Suspend route; what about the current exchange

2012-03-07 Thread jmh
Hello, suppose I suspend a route starting with a jms consumer. My question : is the current exchange also stopped/suspended or is still processed until it reaches gracefully the end of the route ? Thanks for your help Regards -- View this message in context: http://camel.465427.n5.nabble.com/

Re: Suspend route; what about the current exchange

2012-03-08 Thread jmh
Hi Claus, suppose I suspend a route starting with a jms consumer At the same time, I already have 3 messages on the queue on which the consumer is listening. What's happening when the route is suspended ? These 3 messages stay on the queue until the route is resumed ? Regards J-M -- View th

Bean invocation

2012-03-13 Thread jmh
Hello, suppose this route : from("file://{{extra.inputDir}}") .routeId("start") .*bean*(EnterpriseServiceUtils.class,"define").. simple question to be sure : Is this kind of bean definition creates a singleton or Camel creates a ne

exception in the wireTap EIP

2012-03-14 Thread jmh
Hello, suppose you have these routes and you have JMS transactions configured in a spring context definition file : /from("file:{{inputDir}}").wireTap("activemq:log").to("file:{{outputDir}}"); from("activemq:log").beanRef("logger", "log");/ Now, suppose you have an exception in the wireTap whe

strange file polling consumer blocking

2012-03-29 Thread jmh
Hello, I would like to understand this strange behavior with my route starting with a file polling consumer : I have sometimes two .camelLock remaining and some files waiting (blocked) while some new files are processed with success. These files blocked remain blocked until I delete manually the

IMAP performance

2012-06-08 Thread jmh
Hello, I would like to turn my IMAP consumer to increase performance (like concurrent consumer ?) How can I do this with the imap component ? I actually have this route : from("imap:{{imap.connection}}") .beanRef(BEAN_REF_GEDIMAIL_CAMEL_FACADE, "performMail")

netty4-http and security constraint don't work as expected

2015-10-16 Thread jmh
Hello, netty4-http strips the starting endpoint path so the target is relative to the endpoint uri How can it work with securtiy config based on url in the example below ? That doesn't work as expected because the target is empty... Here is my route defined in rest dsl with netty4-http componen