Re: MINA + ACTIVEMQ + BEANREF

2010-04-16 Thread Claus Ibsen
You have to send the message to the JMS as InOnly to avoid using request/reply over that JMS queue. For example you can wireTap to the JMS queue, which should tap the message as InOnly from("demomllp").wireTap("queuea").beanRef("myBean","myMethod"); You can also change the MEP in the Camel route

How to route a message to remote ActiveMQ broker(s) dynamically?

2010-04-16 Thread mdasari
Hi, I needed to route a message from one ActiveMQ broker to one or more remote ActiveMQ brokers based on some runtime information. Lets say I've broker "central" and remote brokers "remote1", "remote2", ... "remoteN". The number of remote brokers can change over time and I wouldn't want to confi

MINA + ACTIVEMQ + BEANREF

2010-04-16 Thread faushouse
Here is what I am trying to do: --> MINA (mina:tcp://localhost:42000?sync=true&codec=#hl7codec) --> ActiveMQ:A (INBOUND) --> Some Magic Happens in RAILS_APP --> ActiveMQ:B (OUTBOUND) --> MINA Here is what I was hoping would happen: from("demomllp").to("queuea").beanRef("myBean","myMethod"); my

Re: Quickfix send/receive messages in both directions

2010-04-16 Thread Steve Bate
cmoulliard wrote: > > Hi, > > Communication with FIX engine is different from a pure client - server > communication. > Hello, I'm the author of QuickFIX/J. I wanted to clarify a few points. As you've said FIX is different from client/server protocols. In fact, it's not client/server at all

Re: onException handling

2010-04-16 Thread Claus Ibsen
Hi Thanks for taking your time to write back with such a detailed information about your solution and thoughts. On Fri, Apr 16, 2010 at 4:13 PM, dnn wrote: > > After a lot more digging, I've found what's really going on.  I'm using > Spring 2.5.6, Camel 2.2.0, ActiveMQ 5.3.1, Hibernate 3.4.0.GA

Re: onException handling

2010-04-16 Thread dnn
After a lot more digging, I've found what's really going on. I'm using Spring 2.5.6, Camel 2.2.0, ActiveMQ 5.3.1, Hibernate 3.4.0.GA, and Bitronix 1.3.3. The latest problem I was having (commit() call fails) was because Hibernate flushes itself to the DB as a pre-commit synchronization listener.

unmarshal gzip and streaming

2010-04-16 Thread lefdev
how can i make the following route to work with gzipped files without loosing the streaming advantages?? from("file://inbox/").split(body().tokenize()).streaming().log("${body}").end().log("Finished") -- View this message in context: http://old.nabble.com/unmarshal-gzip-and--streaming-tp282657

Re: Setting optional parameters with Camel Header for camel-smpp

2010-04-16 Thread Claus Ibsen
Hi Christian Mueller developed and contributed this component to Apache. Maybe try get in touch with him. On Thu, Apr 15, 2010 at 7:32 PM, iocanel wrote: > > > lekkie wrote: >> >> Is there a way to set optional parameters for SMS messages sent to an smpp >> endpoint? >> kr. >> > > Even though

Re: Injecting ProducerTemplates, scoping, and JMX memleak

2010-04-16 Thread Claus Ibsen
Hi Thanks for the advise. In the mean time we have improved the original issue with having prototype scoped @Producer being added as services to close. This is now fixed on trunk as Camel now detects the scope of the bean and only for singletons will add it as a service to close. For prototypes a

Re: Integration CORBA with Camel ?

2010-04-16 Thread Charles Moulliard
Hi Ade, I think that I will create a bean processor based on the one of the following approach : 1) Spring --> spring-corba : http://people.yandex-team.ru/~stepancheg/spring-corba/ 2) Java CORBA --> http://java.sun.com/developer/onlineTraining/corba/corba.html#c1 Kind regards, Charles Moulliard