
Originally Posted by
Rooftop
I am investigating a little more. I took the testdrive and changed the topic to a queue. I understood that this means point-to-point messaging, only one client receives the message, but in the altered jms-chat application both clients receive the message. Is this an error?
No, this is not an error. Using a queue gives you point-to-point on the *server*, but the Flex producer/consumer model between the server and client is inherently publish/subscribe.

Originally Posted by
Rooftop
Another thing that wonders me. What is difference between
Code:
<flex:jms-message-destination id="jms-chat" topic-name="chatTopic" />
and
Code:
<flex:jms-message-destination id="jms-chat" jms-destination="chatTopic" />
The first version essentially uses Spring's DestinationResolver to get ahold of the actual JMS Destination instance, while the second version just directly references a Destination bean that Spring is already managing.

Originally Posted by
Rooftop
Could someOne answer on my first post?
Your described scenario is a little vague, so it's hard to say if the path you're taking is correct or not. It would help if you could describe your requirements in a bit more detail and how you are trying to interact with the JMS destinations.
Jeremy Grelle
Staff Engineer, Web Products Team
SpringSource