If your goal is to have one JMS Consumer which receivesmessages and
broadcasts them to Flex clients, you can do thiswithout using the JMS
adapter. Write some Java code either as a"message driven bean" or using
the JMS apis directly to grab theJMS messages. You can then convert
these messages to flex messagesand send them to an ActionScriptAdapter
flex messaging destination.See the Feed.java sample for the code
necessary to do this. Thetrickiest part of this is getting the JMS
messages in the fir...