Hi,
I'm trying deploy activemq in jboss. All it's allright, I launch a java
app that send messages to topic destination, but when I want to connect
from flex consumer to that destination, no messages are received.
I have follow all steps in the activemq with jboss integration tutorial:
http://devzone.logicblaze.com/site/integrating-apache-activemq-with-jbos\
s.html
In the messaging-config.xml file of flex I have written:
<destination id="chat-jms">
<properties>
<server>
<durable>false</durable>
<durable-store-manager>flex.messaging.durability.FileStoreManager</durab\
le-store-manager>
</server>
<jms>
<message-type>javax.jms.ObjectMessage</message-type>
<connection-factory>java:comp/env/JmsConnectionFactory</connection-facto\
ry>
<destination-jndi-name>java:activemq/topic/inbound</destination-jndi-nam\
e>
<destination-name>flexChat</destination-name>
<delivery-mode>NON_PERSISTENT</delivery-mode>
<message-priority>DEFAULT_PRIORITY</message-priority>
<acknowledge-mode>AUTO_ACKNOWLEDGE</acknowledge-mode>
<transacted-sessions>false</transacted-sessions>
</jms>
</properties>
<channels>
<channel ref="my-rtmp"/>
</channels>
<adapter ref="jms"/>
</destination>
In the java app I connect to "activemq/topic/inbound", and I send
messages.
In the flex app I create a consumer, with destination "chat-jms", but I
don't receive messages
:(
Any suggestion?
Thanks!