Camel AMQ - SSL and XA

2016-06-03 Thread dpravin
Hello,We have AMQ connection factory classes for SSL and XA separately. However I did not find any connection factory class that supports both XA and SSL. Appreciate if anyone has come across this requirement and have a solution for it.Regards,Pravin -- View this message in context: http://came

Re: How to stop a dynamic route

2016-06-03 Thread Daniel P22
Ranx explain to you, I have a route A, in that route you are going to put a file with ammdd date format. Then Im going to create a dinamic route in the Camel Context using that date, this route is what you see in the example, I just wanna from the smb endpoint the files according that date.

Re: XML Configuration with Spring boot

2016-06-03 Thread Pontus Ullgren
Hi, For beans you can place your beans in a separate spring xml in src/main/resources and import it in your FatJarRouter using the @Import(..) annotation. @SpringBootApplication @ImportResource( "beans.xml" ) public class MyFatJarRouter extends FatJarRouter { ... // Pontus On Sat, 4 Jun 2016 a

XML Configuration with Spring boot

2016-06-03 Thread J-
Hi, When using camel with spring-boot with xml config, can you only use and xml components? Is it possible to do other configuration in xml when using spring-boot? For example or inside the xml? I know this has been asked before a long time ago, but now that it's a few years later, is the

Re: File Consumer Exchange

2016-06-03 Thread Brad Johnson
Yeah, as Hans points out the "noop" will leave the file and not even create an exchange so you don't have to filter for it downstream. If you are polling you can set an idempotent flag on the file reader to ensure that it doesn't re-read a file it has already processed. On Fri, Jun 3, 2016 at 1:0

Re: Throttling per activemq consumer

2016-06-03 Thread Brad Johnson
Just speaking to the throttler and not the JMS group, you've set this at 1 message every 30 seconds. Somehow I suspect that isn't what you want. Are all the messages you are consuming on the activemq:queue:test or is that already split/filttered based on the JMSXGroupID? If that queue is the one

RE: Q about how to help the file2 component to do a better job

2016-06-03 Thread Tobias Schöneberg
Hello Souciance, and thx for your reply. I stepped through the code and it really looked like I need to register my own Converter which can then make the conversion the way I want it, i.e. without relying on the system's default encoding to make any sense. If you are interested, this is how the

Re: How to stop a dynamic route

2016-06-03 Thread Brad Johnson
I can't read the format of the code but as Quinn pointed out you can use the control bus but I have to ask what is the purpose/reason for shutting the route down? Are you just running the batch once or are you re-enabling it at some other time? Just from what I can see this looks like it is going

Re: Problem transfer from SMB to FTP OutMemory Java Heap Space

2016-06-03 Thread Brad Johnson
Were you able to bump the heap space in Fuse. The bin directory with fuse/karaf sh or bat file is where that is located. I believe the heap used to be small by default because OSGi/karaf were and are used in small devices. However Fuse isn't. Unfortunately I don't know smb/JFCIS. I know in sim

Re: How to stop a dynamic route

2016-06-03 Thread Quinn Stevenson
You could use the control bus to stop the route ( http://camel.apache.org/controlbus.html ) > On Jun 2, 2016, at 5:06 AM, Daniel Pompa wrote: > > If you see, I have a do-while monitoring the value of the var > CamelBatchComplete, then when is true, sto

Re: Problem transfer from SMB to FTP OutMemory Java Heap Space

2016-06-03 Thread Daniel P22
Thanks Hans and Pontus, let me try this of mount a share. -- View this message in context: http://camel.465427.n5.nabble.com/Problem-transfer-from-SMB-to-FTP-OutMemory-Java-Heap-Space-tp5783383p5783453.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Problem transfer from SMB to FTP OutMemory Java Heap Space

2016-06-03 Thread Pontus Ullgren
Strange I have run applications where I transfer files up to 300MB without problems using camel-jcifs. Feel free to log a jira ( https://camel-extra.atlassian.net/projects/CAMEX/issues) with your findings. However I do agree that if you use case is such that you can mount the shares (either on win

RE: IBM MQ to Active MQ migration

2016-06-03 Thread Steve Huston
IBM MQ -> ActiveMQ is a separate activity from using camel, or are you already using camel with IBM MQ? -teve > -Original Message- > From: tanay94 [mailto:tanay.jos...@gmail.com] > Sent: Friday, June 03, 2016 2:15 AM > To: users@camel.apache.org > Subject: IBM MQ to Active MQ migration >

RE: Problem transfer from SMB to FTP OutMemory Java Heap Space

2016-06-03 Thread Hans Orbaan
Hi, You should mount your share and use the file:// component to avoid out of memory errors. There is something wrong with camel-jcifs. It will go out of memory (threads I guess, not memory, but system resources) will retrieving a file. This already happens from 5 MB or more we found. Could not

Re: Camel blueprint: Unable to load class org.apache.camel.builder.LoggingErrorHandler

2016-06-03 Thread Alex Soto
That worked, thanks! Best regards, Alex soto > On Jun 2, 2016, at 11:20 PM, Quinn Stevenson > wrote: > >> org.apache.camel.builder.LoggingErrorHandler

Jakcom Smart Ring R3---best quality, lowest prices

2016-06-03 Thread Joanne
Introducing what you want-Jakcom Smart Ring Main feature of our Smart Ring : 1.Replace ""door key"" ,""Payment Card"" or other""IC""/""ID""card; 2.Improve human health and prevent disease; 3.Unlock phone ,Quick start phone's program,Share informations,Private notebook,etc; 4.No need to charge

Re: Problem transfer from SMB to FTP OutMemory Java Heap Space

2016-06-03 Thread Pontus Ullgren
localWorkDirectory is a directory on the server where your camel route run (in Fuse as you say), localWorkDirectory is also supported in camel-jcifs ( http://camel.apache.org/jcifs.html). // Pontus On Fri, 3 Jun 2016 at 08:12 Daniel Pompa wrote: > Hi Pontus, sorry Im new in Fuse. The Camel ve

Throttling per activemq consumer

2016-06-03 Thread hasikada
Let's say have I have multiple activemq consumers (jms.concurrentConsumers=20), I use message groups, so incomming messages has JMSXGroupID header set and I would like to enable throttling per message group in Camel. from("activemq:queue:test") .throttle(1).timePeriodMillis(3L)

Re: IBM MQ to Active MQ migration

2016-06-03 Thread souciance
Best help is to start reading the documentation, break the problem in smaller parts, and try it out and then come back with specific questions. On Fri, Jun 3, 2016 at 8:15 AM, tanay94 [via Camel] < ml-node+s465427n5783408...@n5.nabble.com> wrote: > I want to migrate applications from IBM MQ to Ac