Re: Thread pool profiles - Thread.currentThread().setPriority(MIN_PRIORITY)

2014-07-19 Thread Claus Ibsen
On Sun, Jul 20, 2014 at 3:07 AM, Matt Sicker wrote: > I thought thread priorities were deprecated? > Yeah I think so too. We do not have Camel API to configure them. > > On 19 July 2014 18:39, marks1900 wrote: > >> >> How do I create a pool of threads for a specific Camel route that allows me >

Re: Thread pool profiles - Thread.currentThread().setPriority(MIN_PRIORITY)

2014-07-19 Thread Matt Sicker
I thought thread priorities were deprecated? On 19 July 2014 18:39, marks1900 wrote: > > How do I create a pool of threads for a specific Camel route that allows me > to set the Thread priority? > > http://camel.apache.org/threading-model.html > > Do I just create a custom ThreadPoolProfile and

Thread pool profiles - Thread.currentThread().setPriority(MIN_PRIORITY)

2014-07-19 Thread marks1900
How do I create a pool of threads for a specific Camel route that allows me to set the Thread priority? http://camel.apache.org/threading-model.html Do I just create a custom ThreadPoolProfile and assign it to my Camel route, and then in the Camel route initialize the Thread directly with the us

RE: Camel automatic route triggers upon server startup

2014-07-19 Thread Ravindra.Godbole
Can you please share the route details ? Did you refer the following link ? http://camel.apache.org/activemq-camel-tomcat.html -Ravi From: mikes300 [mikes...@yahoo.com] Sent: Saturday, July 19, 2014 8:16 AM To: users@camel.apache.org Subject: Camel automa

Re: camel-spark-rest

2014-07-19 Thread Matt Sicker
On 19 July 2014 01:42, Claus Ibsen wrote: > This is changing slightly as part of the Rest DSL being part of camel-core. > This DSL allows you to configure port number and other details. > > Ooh, is this related to CAMEL-7354 ? -- Matt Sicker

Re: Recieving BlobMessages routed with Camel

2014-07-19 Thread sheckey
Hi, please ignore my previous post. Simple conversion to HornetQObjectMessage did the trick. Regards -- View this message in context: http://camel.465427.n5.nabble.com/Recieving-BlobMessages-routed-with-Camel-tp471389p5754035.html Sent from the Camel - Users mailing list archive at Nabble.com

Re: Recieving BlobMessages routed with Camel

2014-07-19 Thread sheckey
Hi Claus, I was looking for similar topic on HornetQ but couldn't find it. I am having route like this: from("jms:IncomingMessages?mapJmsMessage=false").beanRef(bean, "methodName"); My method implementation looks lilke: public String methodName(@Body Object message) { final org.hor

Re: javax.net.ssl.SSLException: hostname in certificate didn't match

2014-07-19 Thread Claus Ibsen
Hi Can you try configure it on the component instead of the endpoint. eg using a spring style you can configure it on the component. On Fri, Jul 18, 2014 at 8:48 PM, rbkumar88 wrote: > Hi, > > I am using Apache Camel 2.13.2 and httpclient 4.3.3 > > Even if I configure the AllowAllHostNameVe

Re: Setting jmx object name (...name=myName)

2014-07-19 Thread dermoritz
sorry for stupid question, this should be sufficient: http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/management/DefaultManagementNamingStrategy.html (as you said) -- View this message in context: http://camel.465427.n5.nabble.com/Setting-jmx-object-name-name-myName-tp

Re: Setting jmx object name (...name=myName)

2014-07-19 Thread dermoritz
Thanks Claus, 'Til now i tried it one time to implement Namingstrategy (i let Eclipse show me all methods to be implemented). On first glance i could not see how to get the default name but only change the last part. Are there any examples or what is the name of the default implementation camel u