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
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
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
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
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();
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";
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
---
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.