<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="http://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    Only one subscriber sees a topic message in a clustered topic setup
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="http://community.jboss.org/people/poesys">Bob Muller</a> in <i>JBoss Messaging</i> - <a href="http://community.jboss.org/message/595433#595433">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>I have created a straightforward Topic setup on a two-node JBoss 5.1 cluster (using the all server with Messaging defaults). Here's the topic configuration I added in destinations-service.xml on all nodes:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><pre class="jive-pre"><code class="jive-code jive-xml">&#160;&#160; <span class="jive-xml-tag">&lt;mbean
&#160;&#160;&#160;&#160;&#160; code="org.jboss.jms.server.destination.TopicService"
&#160;&#160;&#160;&#160;&#160; name="jboss.messaging.destination:service=Topic,name=PoesysCacheDelete"
&#160;&#160;&#160;&#160;&#160; xmbean-dd="xmdesc/Topic-xmbean.xml"&gt;</span>
&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;depends optional-attribute-name="ServerPeer"&gt;</span>jboss.messaging:service=ServerPeer<span class="jive-xml-tag">&lt;/depends&gt;</span>
&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;depends&gt;</span>jboss.messaging:service=PostOffice<span class="jive-xml-tag">&lt;/depends&gt;</span>
&#160;&#160; <span class="jive-xml-tag">&lt;/mbean&gt;</span>
</code></pre><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Our web app has a simple pojo cache (a Java Map) that holds data objects queried from a database. Each node has a separate singleton cache. I am using messaging to have the cache on each node remove an object on demand. So the behavior I want is:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><ol><li>The user updates an object.</li><li>The database transaction happens.</li><li>The data access code sends a message to the topic to remove the object from the cache (the payload is the key in the Map).</li><li>The registered listeners (MessageListener implementations) in the instance of the web app running on each node receive the published topic message and respond by removing the cached object as requested.</li></ol><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>This works fine as long as I have only one node; I'm logging all this and I see the message sent and received and the cache deleted.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>However, when I have two nodes, everything stops working. Looking at the logs, it appears that when a node receives the message and acts on it, the other node(s) don't ever see that message. Since I want the action to happen on all nodes, this means the cache operation(s) don't happen on all the nodes. In particular, the sticky-session setup means that the originating/publishing node only sees some of the messages and may or may not remove the object from its own cache, which then causes the next page to display old data.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>This looks an awful lot like a race condition between the nodes. My understanding was (and seems to be verified by looking through the topics on this discussion forum) that a clustered topic means that ALL listeners get the message. I can verify that isn't true here--the instant a message is received on one node, the other node(s) don't see it.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I did verify that the mbean is clustered by examining it in the jmx-console for the nodes.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>This is the Java code that implements MessageListener:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><pre class="jive-pre"><code class="jive-code jive-java"><font color="darkgreen">/**
 * A thread-based class that listens for messages about the Poesys/DB cache.
 * 
 * @author Robert J. Muller
 */</font>
<font color="navy"><b>public</b></font> <font color="navy"><b>class</b></font> CacheMessageListener <font color="navy"><b>implements</b></font> Runnable, MessageListener <font color="navy">{</font>
&#160;
&#160; <font color="darkgreen">/**
&#160;&#160; * Logger for this class
&#160;&#160; */</font>
&#160; <font color="navy"><b>private</b></font> <font color="navy"><b>static</b></font> <font color="navy"><b>final</b></font> Logger logger =
&#160;&#160;&#160; Logger.getLogger(CacheMessageListener.class);
&#160;
&#160; <font color="navy"><b>private</b></font> <font color="navy"><b>static</b></font> <font color="navy"><b>final</b></font> String LISTENER_MSG =
&#160;&#160;&#160; <font color="red">"com.poesys.db.dao.msg.listener_problem"</font>;
&#160; <font color="navy"><b>private</b></font> <font color="navy"><b>static</b></font> <font color="navy"><b>final</b></font> String DELETE_MSG =
&#160;&#160;&#160; <font color="red">"com.poesys.db.dao.msg.delete_problem"</font>;
&#160; <font color="navy"><b>private</b></font> <font color="navy"><b>static</b></font> <font color="navy"><b>final</b></font> String INTERRUPT_MSG =
&#160;&#160;&#160; <font color="red">"com.poesys.db.dao.msg.interrupted"</font>;
&#160;
&#160; <font color="darkgreen">/** JMS topic name for the Poesys/DB delete topic */</font>
&#160; <font color="navy"><b>public</b></font> <font color="navy"><b>static</b></font> <font color="navy"><b>final</b></font> String DELETE_TOPIC = <font color="red">"topic/PoesysCacheDelete"</font>;
&#160; <font color="darkgreen">/** JMS connection factory name */</font>
&#160; <font color="navy"><b>public</b></font> <font color="navy"><b>static</b></font> <font color="navy"><b>final</b></font> String CONNECTION_FACTORY = <font color="red">"ClusteredConnectionFactory"</font>;
&#160; <font color="darkgreen">/** JMS ObjectMessage property name for cache name property */</font>
&#160; <font color="navy"><b>public</b></font> <font color="navy"><b>static</b></font> <font color="navy"><b>final</b></font> String CACHE_NAME_PROPERTY = <font color="red">"CacheName"</font>;
&#160;
&#160; <font color="navy"><b>private</b></font> Connection connection;
&#160; <font color="navy"><b>private</b></font> Session sessionConsumer;
&#160; <font color="navy"><b>private</b></font> MessageConsumer consumer;
&#160;
&#160; <font color="darkgreen">/**
&#160;&#160; * Runs the message listener.
&#160;&#160; */</font>
&#160; <font color="navy"><b>public</b></font> <font color="navy"><b>void</b></font> run() <font color="navy">{</font>
&#160;&#160;&#160; <font color="navy"><b>try</b></font> <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160; <font color="darkgreen">// Look up the connection factory using JNDI.</font>
&#160;&#160;&#160;&#160;&#160; Context initial = <font color="navy"><b>new</b></font> InitialContext();
&#160;&#160;&#160;&#160;&#160; ConnectionFactory cf =
&#160;&#160;&#160;&#160;&#160;&#160;&#160; (ConnectionFactory)initial.lookup(CONNECTION_FACTORY);
&#160;
&#160;&#160;&#160;&#160;&#160; <font color="darkgreen">// Set this object to be a message listener for delete requests.</font>
&#160;&#160;&#160;&#160;&#160; Destination deleteTopic = (Destination)initial.lookup(DELETE_TOPIC);
&#160;&#160;&#160;&#160;&#160; connection = cf.createConnection();
&#160;&#160;&#160;&#160;&#160; sessionConsumer =
&#160;&#160;&#160;&#160;&#160;&#160;&#160; connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
&#160;&#160;&#160;&#160;&#160; consumer = sessionConsumer.createConsumer(deleteTopic);
&#160;&#160;&#160;&#160;&#160; consumer.setMessageListener(<font color="navy"><b>this</b></font>);
&#160;&#160;&#160;&#160;&#160; connection.start();
&#160;
&#160;&#160;&#160;&#160;&#160; logger.info(<font color="red">"Cache message listener started, listening for cache removal requests"</font>);
&#160;
&#160;&#160;&#160;&#160;&#160; <font color="darkgreen">// Sleep indefinitely until interruption.</font>
&#160;&#160;&#160;&#160;&#160; <font color="navy"><b>while</b></font> (!Thread.currentThread().isInterrupted()) <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="darkgreen">// Sleeps for 10 seconds</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; Thread.sleep(10 * 1000);
&#160;&#160;&#160;&#160;&#160; <font color="navy">}</font>
&#160;&#160;&#160; <font color="navy">}</font> <font color="navy"><b>catch</b></font> (InterruptedException e) <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160; String message = com.poesys.db.Message.getMessage(INTERRUPT_MSG, <font color="navy"><b>null</b></font>);
&#160;&#160;&#160;&#160;&#160; logger.info(message);
&#160;&#160;&#160; <font color="navy">}</font> <font color="navy"><b>catch</b></font> (Exception e) <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160; String message = com.poesys.db.Message.getMessage(LISTENER_MSG, <font color="navy"><b>null</b></font>);
&#160;&#160;&#160;&#160;&#160; logger.error(message, e);
&#160;&#160;&#160; <font color="navy">}</font> <font color="navy"><b>finally</b></font> <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160; <font color="navy"><b>if</b></font> (connection != <font color="navy"><b>null</b></font>) <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy"><b>try</b></font> <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; connection.close();
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy">}</font> <font color="navy"><b>catch</b></font> (JMSException e) <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; String message = com.poesys.db.Message.getMessage(LISTENER_MSG, <font color="navy"><b>null</b></font>);
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; logger.error(message, e);
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy">}</font>
&#160;&#160;&#160;&#160;&#160; <font color="navy">}</font>
&#160;&#160;&#160; <font color="navy">}</font>
&#160; <font color="navy">}</font>
&#160;
&#160; <font color="darkgreen">/*
&#160;&#160; * (non-Javadoc)
&#160;&#160; * 
&#160;&#160; * @see javax.jms.MessageListener#onMessage(javax.jms.Message)
&#160;&#160; */</font>
&#160; @Override
&#160; <font color="navy"><b>public</b></font> <font color="navy"><b>void</b></font> onMessage(Message message) <font color="navy">{</font>
&#160;&#160;&#160; IPrimaryKey key = <font color="navy"><b>null</b></font>;
&#160;&#160;&#160; String cacheName = <font color="navy"><b>null</b></font>;
&#160;
&#160;&#160;&#160; <font color="navy"><b>if</b></font> (message == <font color="navy"><b>null</b></font>) <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160; logger.error(<font color="red">"Cache message listener received null message"</font>);
&#160;&#160;&#160; <font color="navy">}</font> <font color="navy"><b>else</b></font> <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160; <font color="navy"><b>try</b></font> <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; logger.debug(<font color="red">"Received cache removal request"</font>);
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="darkgreen">// Get the message and extract the key and the cache name.</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; ObjectMessage objectMessage = (ObjectMessage)message;
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy"><b>if</b></font> (objectMessage != <font color="navy"><b>null</b></font>) <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="darkgreen">// Message key is the object payload.</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Serializable object = objectMessage.getObject();
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy"><b>if</b></font> (object <font color="navy"><b>instanceof</b></font> com.poesys.ms.pk.IPrimaryKey) <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; com.poesys.ms.pk.IPrimaryKey messageKey = 
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; (com.poesys.ms.pk.IPrimaryKey)objectMessage.getObject();
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="darkgreen">// Translate into database primary key.</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; key = MessageKeyFactory.getKey(messageKey);
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="darkgreen">// Cache name is a property.</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; cacheName = objectMessage.getStringProperty(CACHE_NAME_PROPERTY);
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; IDtoCache&lt;?&gt; cache = DaoManager.getCache(cacheName);
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="darkgreen">// Remove the object from the local cache only if it's there; if</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="darkgreen">// it's not there, move on since there's nothing to do.</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy"><b>if</b></font> (cache != <font color="navy"><b>null</b></font>) <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; logger.debug(<font color="red">"Removing key "</font> + key.getValueList() + <font color="red">" from cache "</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; + cacheName);
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; cache.removeLocally(key);
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy">}</font> <font color="navy"><b>else</b></font> <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; logger.debug(<font color="red">"No cache from which to remove object"</font>);
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy">}</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy">}</font> <font color="navy"><b>else</b></font> <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; logger.error(<font color="red">"Cache message listener received message with a payload that was not a primary key"</font>);
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy">}</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy">}</font>
&#160;&#160;&#160;&#160;&#160; <font color="navy">}</font> <font color="navy"><b>catch</b></font> (JMSException e) <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="darkgreen">// log full information and ignore</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; Object[] objects = <font color="navy">{</font> cacheName, key.getValueList() <font color="navy">}</font>;
&#160;&#160;&#160;&#160;&#160;&#160;&#160; String errorMsg = com.poesys.db.Message.getMessage(DELETE_MSG, objects);
&#160;&#160;&#160;&#160;&#160;&#160;&#160; logger.error(errorMsg, e);
&#160;&#160;&#160;&#160;&#160; <font color="navy">}</font> <font color="navy"><b>catch</b></font> (RuntimeException e) <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="darkgreen">// log and ignore</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; logger.error(<font color="red">"Runtime exception in onMessage: "</font>, e);
&#160;&#160;&#160;&#160;&#160; <font color="navy">}</font>
&#160;&#160;&#160; <font color="navy">}</font>
&#160; <font color="navy">}</font>
<font color="navy">}</font>
</code></pre><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>This is the Java code that sends the message:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><pre class="jive-pre"><code class="jive-code jive-java">&#160; @Override
&#160; <font color="navy"><b>public</b></font> <font color="navy"><b>void</b></font> remove(IPrimaryKey key) <font color="navy">{</font>
&#160;&#160;&#160; <font color="darkgreen">// Send a message to listeners asking to remove there. This will remove</font>
&#160;&#160;&#160; <font color="darkgreen">// the object from all listening caches with the cache name of this cache,</font>
&#160;&#160;&#160; <font color="darkgreen">// including THIS one.</font>
&#160;&#160;&#160; Connection connection = <font color="navy"><b>null</b></font>;
&#160;&#160;&#160; <font color="navy"><b>try</b></font> <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160; Context initial = <font color="navy"><b>new</b></font> InitialContext();
&#160;&#160;&#160;&#160;&#160; ConnectionFactory cf =
&#160;&#160;&#160;&#160;&#160;&#160;&#160; (ConnectionFactory)initial.lookup(CacheMessageListener.CONNECTION_FACTORY);
&#160;&#160;&#160;&#160;&#160; Destination deleteTopic =
&#160;&#160;&#160;&#160;&#160;&#160;&#160; (Destination)initial.lookup(CacheMessageListener.DELETE_TOPIC);
&#160;&#160;&#160;&#160;&#160; connection = cf.createConnection();
&#160;&#160;&#160;&#160;&#160; Session session =
&#160;&#160;&#160;&#160;&#160;&#160;&#160; connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
&#160;&#160;&#160;&#160;&#160; MessageProducer producer = session.createProducer(deleteTopic);
&#160;&#160;&#160;&#160;&#160; connection.start();
&#160;&#160;&#160;&#160;&#160; ObjectMessage om = session.createObjectMessage(key.getMessageObject());
&#160;&#160;&#160;&#160;&#160; om.setStringProperty(CacheMessageListener.CACHE_NAME_PROPERTY,
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; getCacheName());
&#160;&#160;&#160;&#160;&#160; producer.send(om);
&#160;&#160;&#160;&#160;&#160; logger.debug(<font color="red">"Sent message to remove "</font> + key.getValueList()
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; + <font color="red">" from cache "</font> + getCacheName());
&#160;&#160;&#160; <font color="navy">}</font> <font color="navy"><b>catch</b></font> (Exception e) <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160; Object[] objects = <font color="navy">{</font> getCacheName() <font color="navy">}</font>;
&#160;&#160;&#160;&#160;&#160; String message = com.poesys.db.Message.getMessage(PRODUCER_MSG, objects);
&#160;&#160;&#160;&#160;&#160; logger.error(message, e);
&#160;&#160;&#160; <font color="navy">}</font> <font color="navy"><b>finally</b></font> <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160; <font color="navy"><b>if</b></font> (connection != <font color="navy"><b>null</b></font>) <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy"><b>try</b></font> <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; connection.close();
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy">}</font> <font color="navy"><b>catch</b></font> (JMSException e) <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Object[] objects = <font color="navy">{</font> getCacheName() <font color="navy">}</font>;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; String message =
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; com.poesys.db.Message.getMessage(PRODUCER_MSG, objects);
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; logger.error(message, e);
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy">}</font>
&#160;&#160;&#160;&#160;&#160; <font color="navy">}</font>
&#160;&#160;&#160; <font color="navy">}</font>
&#160; <font color="navy">}</font>
</code></pre></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="http://community.jboss.org/message/595433#595433">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in JBoss Messaging at <a href="http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2042">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>