Re: SEDA with request-response

2010-09-17 Thread Claus Ibsen
On Fri, Sep 17, 2010 at 10:08 PM, lujan99 wrote: > > I Use a route where my Bean make a call to a webservice, I use SEDA to > support multiple request. > This are request-response how can I do to not block ? because if I use > request-response with seda with first request seda block until is compl

Re: XMPP + Smack

2010-09-17 Thread Claus Ibsen
On Sat, Sep 18, 2010 at 5:02 AM, Donald Whytock wrote: > Hi all... > > Trying to work with the XMPP component, I find I needed the following .jars: > > smack-3.0.4.jar > smackx-3.0.4.jar > > Are these the correct versions to use with Camel 2.4.0?  Will these Use maven and it will download all the

Re: An camel's exception with osgi

2010-09-17 Thread Claus Ibsen
Hi Please read this wiki page http://camel.apache.org/support How do you think anyone want/can help you when you dont even detail information about - versions of software used - container used - how you start it - did it work before, did you upgrade something - JDK version And did you look in th

Re: $headername = 'value still works?

2010-09-17 Thread Claus Ibsen
You have header >            $foo = 'true' But you should use xpath            $foo = 'true' On Sat, Sep 18, 2010 at 3:38 AM, Illtud Daniel wrote: > Hi, > > I'm using camel as distributed with apachemq, sorry if this turns > out to be an activemq problem. > > activemq 5.3.2 shipped with camel

Re: Spring Security

2010-09-17 Thread Claus Ibsen
On Sat, Sep 18, 2010 at 12:46 AM, Hossein wrote: > > Unfortunately, that won't work us. We have to use official released versions, > which currently is fuse-4.2 which includes camel 2.2. > > Any other suggestions / doc reference is greatly appreciated. Thanks > Do it yourself. Or get a support c

Re: choose() question

2010-09-17 Thread Claus Ibsen
On Fri, Sep 17, 2010 at 11:58 PM, Donald Whytock wrote: > Can I chain whens?  As in, > from(endpoint).when(pred1).when(pred2).when(pred3).process(processor), > where processor gets invoked only if all the preds return true?  Or > does a when need to be followed by something-not-a-when? > Only one

XMPP + Smack

2010-09-17 Thread Donald Whytock
Hi all... Trying to work with the XMPP component, I find I needed the following .jars: smack-3.0.4.jar smackx-3.0.4.jar Are these the correct versions to use with Camel 2.4.0? Will these eventually be included with the Camel download? Don

$headername = 'value still works?

2010-09-17 Thread Illtud Daniel
Hi, I'm using camel as distributed with apachemq, sorry if this turns out to be an activemq problem. activemq 5.3.2 shipped with camel 2.0 (as far as I can tell) activemq 5.4 uses 2.4.0 A route that used to work for me in 2.0 doesn't any more: xmlns:ns2="http://camel.apache.org/schema/web"; x

Re: Spring Security

2010-09-17 Thread Hossein
Unfortunately, that won't work us. We have to use official released versions, which currently is fuse-4.2 which includes camel 2.2. Any other suggestions / doc reference is greatly appreciated. Thanks Thanks -- View this message in context: http://camel.465427.n5.nabble.com/Spring-Security-tp2

Re: choose() question

2010-09-17 Thread Donald Whytock
Can I chain whens? As in, from(endpoint).when(pred1).when(pred2).when(pred3).process(processor), where processor gets invoked only if all the preds return true? Or does a when need to be followed by something-not-a-when? On Thu, Sep 16, 2010 at 1:06 PM, Claus Ibsen wrote: > You can use an inter

Re: camel-ibatis and NoClassDefFound

2010-09-17 Thread Mark
Darren - Great you sorted it. Burn it to CD. Then do some code-archeology at your leisure!!! On 17 September 2010 21:13, Darren Davison wrote: > Hi Willem, > > I started with a clean install of Fuse and re-deployed everything from > our features files.. the error disappeared.  It's odd because

Re: camel-ibatis and NoClassDefFound

2010-09-17 Thread Darren Davison
Hi Willem, I started with a clean install of Fuse and re-deployed everything from our features files.. the error disappeared. It's odd because this was happening on 2 development machines at the same time and clearing the data directory alone didn't fix it on either. I still have a backup of the

SEDA with request-response

2010-09-17 Thread lujan99
I Use a route where my Bean make a call to a webservice, I use SEDA to support multiple request. This are request-response how can I do to not block ? because if I use request-response with seda with first request seda block until is completed, and then process next request, If I don't use request

best practice for logging execution time

2010-09-17 Thread jburkhardt
Title is a little weird as I didn't quite know the proper way to phrase this. I'm interested in logging the duration of certain things, such as how long it takes the file component to read or write a file, how long it takes the jms component to publish or consume a message, etc. As an example, my

Re: Spring Security

2010-09-17 Thread Claus Ibsen
Hi Not its only avail from Camel 2.3 http://camel.apache.org/spring-security.html But you can maybe just download the jar and use it with Camel 2.2. On Fri, Sep 17, 2010 at 5:09 PM, Hossein wrote: > > Hello, I'm using camel 2.2 and need to implement security for invoking my > webservice. Is sp

Spring Security

2010-09-17 Thread Hossein
Hello, I'm using camel 2.2 and need to implement security for invoking my webservice. Is spring security available for camel 2.2? If not any suggestions on how to authorize and authenticate users? Thanks in advance -- View this message in context: http://camel.465427.n5.nabble.com/Spring-Securi

Re: Camel Cxf example. Jetty Server starting while JBoss already Running

2010-09-17 Thread Indu
Claus, Willem The solution worked like a charm. Big Thanks for you all. Meanwhile I am reading the chapters more closely to see how I can use the CamelHttpTransportServlet to handle all the endpoints in Java DSL because it is already handling few of then like servlet:///, JMS, and others

Re: upgrade Camel in Fuse

2010-09-17 Thread Claus Ibsen
On Fri, Sep 17, 2010 at 12:13 PM, wrote: > Hi, > I hope I'm on the right mailing list. > I'm using Fuse 4.2 and I'm interested in a feature recently implemented in > Camel (dynamic router to be able to select the next endpoint dynamically). > I'm a bit confused by the relationship between Fuse M

upgrade Camel in Fuse

2010-09-17 Thread patrice.godard
Hi, I hope I'm on the right mailing list. I'm using Fuse 4.2 and I'm interested in a feature recently implemented in Camel (dynamic router to be able to select the next endpoint dynamically). I'm a bit confused by the relationship between Fuse Mediation Router & Apache Camel. Can I upgrade the ve

Re: The delay option seems not to be working in CAMEL Java DSL mode

2010-09-17 Thread Claus Ibsen
On Fri, Sep 17, 2010 at 10:56 AM, S. Ali Tokmen wrote: >  Hello Claus > > Your patch is working perfectly. > > Thank you for the fast and accurate response. > Thanks for testing and reporting back. Yeah it was harder to get to the bottom since the ref: component is more seldom used, and you didnt

Re: The delay option seems not to be working in CAMEL Java DSL mode

2010-09-17 Thread S. Ali Tokmen
Hello Claus Your patch is working perfectly. Thank you for the fast and accurate response. Have a nice week end S. Ali Tokmen savas-ali.tok...@bull.net Office: +33 4 76 29 76 19 GSM:+33 66 43 00 555 Bull, Architect of an Open World TM http://www.bull.com On 16/09/2010 18:33, Claus Ibs

Re: camel-ibatis and NoClassDefFound

2010-09-17 Thread Willem Jiang
For the packages:imports, everything looks good. Not sure if the it relates to your route config. Can I have a look at your route configure ? Maybe I can write a simple OSGi test for it. Willem On 9/17/10 12:19 AM, Darren Davison wrote: hi, we are trying to deploy a bundle in smx 4.2 that use