Re: JBoss + ActiveMQ + Camel + Newbie

2009-10-26 Thread Matvey
I've stucked at configuration point, an idea is almost the same: JBOSS 5 + ActvieMQ integration + Camel under ActiveMQ configuration file. So: Jboss 5.1.0 + ActiveMQ 5.3.0, jboss rar: jboss-5.1.0/server/default/deploy/activemq-ra.rar broker config file: jboss-5.1.0/server/default/deploy/active

Re: JBoss + ActiveMQ + Camel + Newbie

2009-10-26 Thread Matvey
Actually my idea was to start ActiveMQ + Camel under Jboss and this topic was exactly about it. I've found where the problem was, at least with Jboss 5.1.0 + ActiveMQ 5.3 + Camel 2.0 + Spring 2.5 you need to explicitly write xmlns in beans definition in your broker-config.xml aslo, params from

Camel + ActiveMQ under Jboss, communication possibilities?

2009-10-27 Thread Matvey
Aslo, we take Jboss 5.1, starting inside it ActiveMQ 5.3 as a broker and integrating there Camel 2.0 with XML Configuration (let us assume no package scan at the beginning, just Spring XML beans and xml routes). Let us start a couple of EJB3 Services under Jboss 5.1 The task is to get messages fr

How to configure Camel Routes under JBOSS 5

2009-11-22 Thread Matvey
ActiveMQ + JBOSS5 + Camel. An Idea is to configure Camel Producers automatically using annotations inside of EJB3 bean (mostly session beans). Is that possible? It looks like I can configure bean for every JMS queue in a Spring config file and than get this bean in EJB3 using onEJBCreate method

Newbie: Mapping JMS Camel / Spring to POJO, ActiveMQ Queues

2009-01-19 Thread Matvey
I need to configure Camel DSL / routes in such a way that on of my old classes gets objects from JMS queue and sends objects to another JMS queue. I can use Camel API to do that, but it seems like in such a case I almost do not use Camel: CamelContext context = new DefaultCamelContext();

Re: Newbie: Mapping JMS Camel / Spring to POJO, ActiveMQ Queues

2009-01-20 Thread Matvey
I still have several questions about Spring/JMS/Camel/POJO mapping. Question 1 for example I have Spring config file: http://www.springframework.org/schema/beans"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xmlns:camel="http://activemq.apache.org/camel/schema/spring";

Camel routes to JMS problem: one simple message sent many times (duplicated)

2009-01-28 Thread Matvey
My confuguration: I want updatesender bean to send one JMS message to Updates queue every time the method sendUM() invokes. In a real life it work a bit different... http://activemq.apache.org/camel/schema/spring";> org.apache.camel.example.spring ---

Re: Camel routes to JMS problem: one simple message sent many times (duplicated)

2009-01-28 Thread Matvey
Matvey wrote: > > My confuguration: I want updatesender bean to send one JMS message to > Updates queue every time the method sendUM() invokes. In a real life it > work a bit different... > > xmlns="http://activemq.apache.