Re: camel-jboss in Maven?

2010-03-19 Thread Hadrian Zbarcea
There is no release of camel-extra yet that contains camel-jboss. You can build it yourself from the trunk and use it though. Hadrian On Mar 16, 2010, at 8:56 AM, pmmerritt wrote: > > I was trying to locate the camel-jboss plugin in the camel-extras maven > repository at > http://camel-extra.go

JPA consumer starts up, but is not polling

2010-03-19 Thread j_h_scheufen
Hi all, I really don't know what could be going wrong in my JPA scenario. I'm using the following route: from("jpa:com.infinity.bpm.jpa.beans.TransactionTracker") .to("bean:transactionMessageTranslator") .choice() // the pre

Re: Quickfix send/receive messages in both directions

2010-03-19 Thread Charles Moulliard
Hi Kostabanderas, You are not doing something wrong. FIX Protocol has been designed in a non client - server mode but as session created over HTTP protocol allowing to send incoming OR outgoing messages. More info here : http://www.fixprotocol.org/specifications/ 1. Is it fair to say that Camel q

Re: Quickfix send/receive messages in both directions

2010-03-19 Thread kostabanderas
Hi all, I'm still confused about this. I started investigating the quickFix component and I noticed this behavior but was sure that I was doing something wrong :) So, a couple of questions: 1. Is it fair to say that Camel quickFix Component handles ONLY the "session - level" messages (=logon, lo

Proposal for a new camel-bean-validation component based on jsr 303

2010-03-19 Thread Christian Mueller
Currently, I'm working on a project where we have to read fixed length records and csv records. Because we don't trust other developers ;-), we want to validate the input. What do you think about a bean validation component which is based on jsr 303 (http://jcp.org/en/jsr/detail?id=303) and which

Re: Camel 2.3 - Default threading profile - Your view

2010-03-19 Thread Claus Ibsen
Hi You can see notes here as well http://camel.apache.org/camel-23-threadpool-configuration.html On Thu, Mar 18, 2010 at 2:24 PM, Ashwin Karpe wrote: > > Hi Claus, > > I do like the settings as initial values which could be potentially > overridden by the components. I also agree with the workQ

Re: Modifying SOAP:Fault errors raised by endpoints

2010-03-19 Thread Claus Ibsen
On Fri, Mar 19, 2010 at 8:04 AM, Jim Talbut wrote: > Thanks Claus, but that still doesn't let me do what I want and is > inefficient. > We love contributions. See feel free to go ahead and create a patch and attach it to a JIRA. And we love more when the patch have unit tests :) http://camel.apa

Re: documentation, ui builder et al

2010-03-19 Thread waterback
Hi James, i know, i know, the Post is rather old and i'm not even sure if this is the right place, but the camel-route-viewer-website seems to have fallen in a permanent hibernation... I got the plugin installed... i have some of this GEF-Stuff in place - but don't know if the newer versions (3.

AW: Synchronous MEP across camel contexts

2010-03-19 Thread Meise, Christoph
Interestingly the Direct component is able to span across context. Imagine you have two spring files with each containing route definitions. All external interface endpoints ("from:" and the final "to:") are declared in a third spring file (outside of any camel context). Addinitionally the third

Re: ConsumerTemplate and OOM exception

2010-03-19 Thread Norman Maurer
Ah right.. Thx for the pointer :) Bye, Norman 2010/3/19 Claus Ibsen : > On Fri, Mar 19, 2010 at 8:55 AM, Norman Maurer > wrote: >> Hi Claus, >> >> did I get it right ? >> >> http://svn.apache.org/viewvc/james/server/trunk/spoolmanager/src/main/java/org/apache/james/transport/camel/JMSSelectorP

Re: ConsumerTemplate and OOM exception

2010-03-19 Thread Claus Ibsen
On Fri, Mar 19, 2010 at 8:55 AM, Norman Maurer wrote: > Hi Claus, > > did I get it right ? > > http://svn.apache.org/viewvc/james/server/trunk/spoolmanager/src/main/java/org/apache/james/transport/camel/JMSSelectorPollingConsumer.java?view=markup > > Would be nice if you could have a look ... > Y

Re: ConsumerTemplate and OOM exception

2010-03-19 Thread Norman Maurer
Hi Claus, did I get it right ? http://svn.apache.org/viewvc/james/server/trunk/spoolmanager/src/main/java/org/apache/james/transport/camel/JMSSelectorPollingConsumer.java?view=markup Would be nice if you could have a look ... Thx, Norman 2010/3/18 Norman Maurer : > Jira Ticket created: > > ht

Re: Cannot resolve reference parameter, if Spring Proxy?

2010-03-19 Thread Claus Ibsen
Hi You have to provide more details. Eg create a small project / or better unit test that demonstrates the issue you have. And try with 2.3-SNAPSHOT also to see if thats better. Then create a JIRA with the project. On Fri, Mar 19, 2010 at 3:16 AM, tide08 wrote: > > Version: 2.2.0 > > I have be

Re: ScheduledPollConsumer - poll() behavior?

2010-03-19 Thread Claus Ibsen
On Fri, Mar 19, 2010 at 2:49 AM, tide08 wrote: > > Sorry, I am much confused at this point :( > > In regards to ScheduledPollConsumer,  is poll() method invoked by concurrent > consumers? or is it just one consumer? I just see one thread invoking > poll(), what is threadpool for than? > Yes 1 thr

Re: Modifying SOAP:Fault errors raised by endpoints

2010-03-19 Thread Jim Talbut
Thanks Claus, but that still doesn't let me do what I want and is inefficient. What it won't let me do: I want to be able to correlate the "out" trace with the "in" trace, in one database row without commiting the row until the route has completed. This requires a JPA transaction to exist aroun