7 Replies Latest reply on Jun 11, 2007 2:23 PM by relgames

    Out of Memory Error

    trickard

      We have an unusual memory problem. I have to reduce JBoss's heap size to keep from running out of memory. We are running JBoss 3.2.5 on HPUX 11.11. We are using JBossMQ and the internal Tomcat. We have a series of standalone java apps that produce and consume messages in addition to other apps that use ejb's. JBossMQ is using an oracle 9i db for the datastore. The UNIX machine has 4GB of memory. The
      machine is dedicated to JBoss and 4 standalone java jms listener apps.

      The failure scenario is as follows.

      App1, a standalone java app, gets information from a db table, sends the information to a servlet running in the internal tomcat which parses and packages the data and sends a jms message appropriate to the data. Some messages go to queue's others to topics with durable
      subscribers.

      App2 is a standalone java app that durably subscribes to various topics, filters messages, reformats selected messages and places the reformatted messages on a queue.

      App3 is a standalone java application that pulls some of App2's reformatted messages from the queue and applies business logic using ejb's.

      Under moderate load, several thousand messages pending, all standalone java apps processing messages, 4000 to 5000 messages processed in this run, we are receiving the following error

      2004-09-14 13:33:04,131 DEBUG [org.jboss.mq.referenceable.SpyConnectionFactoryObjectFactory] The GenericConnectionFactory is: GenericConnectionFactory[server=org.jboss.mq.il.uil2.UILServerIL@1bb55d3 connectionProperties={UIL_ADDRESS_KEY=10.101.1.10, UIL_CHUNKSIZE_KEY=1000000, UIL_TCPNODELAY_KEY=yes, ClientILService=org.jboss.mq.il.uil2.UILClientILService, UIL_PORT_KEY=8093, UIL_BUFFERSIZE_KEY=2048, PingPeriod=60000}]
      2004-09-14 13:33:04,135 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin ReadTask.run
      2004-09-14 13:33:04,137 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin WriteTask.run
      2004-09-14 13:33:04,138 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectOutputStream
      2004-09-14 13:33:04,138 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin ReadTask.run
      2004-09-14 13:33:04,138 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin WriteTask.run
      2004-09-14 13:33:04,138 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectInputStream
      2004-09-14 13:33:04,138 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectOutputStream
      2004-09-14 13:33:04,140 DEBUG [org.jboss.mq.il.uil2.SocketManager] Exiting on unexpected error in read task
      java.lang.OutOfMemoryError: unable to create new native thread
      at java.lang.Thread.start(Native Method)
      at EDU.oswego.cs.dl.util.concurrent.PooledExecutor.addThread(PooledExecutor.java:520)
      at EDU.oswego.cs.dl.util.concurrent.PooledExecutor.execute(PooledExecutor.java:880)
      at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:296)
      at java.lang.Thread.run(Thread.java:534)
      20

      JBoss is configured with 1GB of memory. When the system fails, HP GLANCE reports 40% of physical memory free. JBoss reports 600 or so megs of free heapspace via the jboss web-console. There
      are 1300 - 2000 active threads in JBoss. It appears that JBoss threads are being created and free'ed smoothly, the memory and thread number constantly increase/decrease. The unix box is configured to allow 6000 threads per process. File handles etc are greater than 20,000. The failures seem to follow a spike in threads but it is not necessarily related to the thread high water mark. It does not get to 2000 threads and fail, it gets to 2000, drops back to 1300, spikes to 1500 and fails. The details are
      of course different for every failure.

      Paradoxically, if I reduce the JBoss heap to 384 megs the entire message run processes without error. The thread count is somewhat reduced and we dont seem to hit the wild fluctuations that seem to proceed a failure.

      I am not sure what forum to place this in. Any ideas will be greatly appreciated.

        • 1. Re: Out of Memory Error
          starksm64

          Unix platform report an out of memory error when running out of threads as well so that is what has to be happening here.

          • 2. Re: Out of Memory Error
            trickard

            We have plenty of free memory according to the UNIX monitor.

            • 3. Re: Out of Memory Error
              starksm64

              Right, which is why I said the issue appears to be running out of thread or descriptors.

              • 4. Re: Out of Memory Error
                giates

                We've seen the same problem some time ago (the problem also reported a too many open files...).

                We solved the problem with this settings:

                Edit the file /etc/security/limits.conf (as root user) and insert the rows:

                * soft nofile 16384
                * hard nofile 16384
                * soft nproc 32768
                * hard nproc 32768

                Edit the file /etc/rc.d/rc.local and insert the row:

                echo "300000" > /proc/sys/fs/file-max

                Reboot the server...

                Good luck !

                (Tex)

                • 5. Re: Out of Memory Error
                  bigmarry

                  I encountered the same issue, but the context is totally different:

                  - JBoss 3.2.5, Windows 2000 SP4, 1GB RAM memory
                  - JBoss is configured with 256MB of memory
                  - number of concurrent JMS messages are not more than 50
                  - consumers are MDB's

                  The following log sequence is repeating itself until OutOfMemoryError is generated (I will post about 5 of these log cycles):

                  2005-01-11 17:09:02,937 DEBUG [org.jboss.mq.referenceable.SpyConnectionFactoryObjectFactory] Extracting SpyConnectionFactory from reference
                  2005-01-11 17:09:02,953 DEBUG [org.jboss.mq.referenceable.SpyConnectionFactoryObjectFactory] The GenericConnectionFactory is: GenericConnectionFactory[server=org.jboss.mq.il.uil2.UILServerIL@14c72c8 connectionProperties={UIL_ADDRESS_KEY=192.168.3.92, UIL_CHUNKSIZE_KEY=1000000, UIL_TCPNODELAY_KEY=yes, ClientILService=org.jboss.mq.il.uil2.UILClientILService, UIL_PORT_KEY=8093, UIL_BUFFERSIZE_KEY=2048, PingPeriod=60000}]
                  2005-01-11 17:09:02,953 DEBUG [org.jboss.mq.il.uil2.SocketManager] End WriteTask.run
                  2005-01-11 17:09:02,953 DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler] Exiting on IOE
                  java.net.SocketException: socket closed
                  at java.net.SocketInputStream.socketRead0(Native Method)
                  at java.net.SocketInputStream.read(SocketInputStream.java:129)
                  at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
                  at java.io.BufferedInputStream.read(BufferedInputStream.java:201)
                  at org.jboss.util.stream.NotifyingBufferedInputStream.read(NotifyingBufferedInputStream.java:67)
                  at java.io.ObjectInputStream$PeekInputStream.peek(ObjectInputStream.java:2133)
                  at java.io.ObjectInputStream$BlockDataInputStream.readBlockHeader(ObjectInputStream.java:2313)
                  at java.io.ObjectInputStream$BlockDataInputStream.refill(ObjectInputStream.java:2380)
                  at java.io.ObjectInputStream$BlockDataInputStream.read(ObjectInputStream.java:2452)
                  at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2601)
                  at java.io.ObjectInputStream.readByte(ObjectInputStream.java:845)
                  at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:279)
                  at java.lang.Thread.run(Thread.java:534)
                  2005-01-11 17:09:02,953 DEBUG [org.jboss.mq.il.uil2.SocketManager] End ReadTask.run
                  2005-01-11 17:09:02,953 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin ReadTask.run
                  2005-01-11 17:09:02,953 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin WriteTask.run
                  2005-01-11 17:09:02,953 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectOutputStream
                  2005-01-11 17:09:02,953 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin ReadTask.run
                  2005-01-11 17:09:02,953 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin WriteTask.run
                  2005-01-11 17:09:02,953 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectOutputStream
                  2005-01-11 17:09:02,953 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectInputStream
                  2005-01-11 17:09:02,953 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectInputStream
                  2005-01-11 17:09:02,953 DEBUG [org.jboss.mq.il.uil2.UILClientILService] Starting
                  2005-01-11 17:09:02,968 DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler] Setting up the UILClientIL Connection
                  2005-01-11 17:09:02,968 DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler] The UILClientIL Connection is set up
                  2005-01-11 17:09:02,968 DEBUG [org.jboss.mq.referenceable.SpyDestinationObjectFactory] SpyDestinationObjectFactory->getObjectInstance()
                  2005-01-11 17:09:02,968 DEBUG [org.jboss.mq.il.uil2.SocketManager] End ReadTask.run
                  2005-01-11 17:09:02,968 DEBUG [org.jboss.mq.il.uil2.SocketManager] End WriteTask.run
                  2005-01-11 17:09:02,968 DEBUG [org.jboss.mq.il.uil2.UILClientILService] Stopping
                  2005-01-11 17:09:02,968 DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler] Exiting on IOE
                  java.net.SocketException: socket closed
                  at java.net.SocketInputStream.socketRead0(Native Method)
                  at java.net.SocketInputStream.read(SocketInputStream.java:129)
                  at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
                  at java.io.BufferedInputStream.read(BufferedInputStream.java:201)
                  at org.jboss.util.stream.NotifyingBufferedInputStream.read(NotifyingBufferedInputStream.java:67)
                  at java.io.ObjectInputStream$PeekInputStream.peek(ObjectInputStream.java:2133)
                  at java.io.ObjectInputStream$BlockDataInputStream.readBlockHeader(ObjectInputStream.java:2313)
                  at java.io.ObjectInputStream$BlockDataInputStream.refill(ObjectInputStream.java:2380)
                  at java.io.ObjectInputStream$BlockDataInputStream.read(ObjectInputStream.java:2452)
                  at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2601)
                  at java.io.ObjectInputStream.readByte(ObjectInputStream.java:845)
                  at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:279)
                  at java.lang.Thread.run(Thread.java:534)
                  2005-01-11 17:09:02,968 DEBUG [org.jboss.mq.il.uil2.SocketManager] End ReadTask.run
                  2005-01-11 17:09:02,984 DEBUG [org.jboss.mq.il.uil2.SocketManager] End WriteTask.run
                  2005-01-11 17:09:03,015 DEBUG [org.jboss.mq.referenceable.SpyConnectionFactoryObjectFactory] Extracting SpyConnectionFactory from reference
                  2005-01-11 17:09:03,015 DEBUG [org.jboss.mq.referenceable.SpyConnectionFactoryObjectFactory] The GenericConnectionFactory is: GenericConnectionFactory[server=org.jboss.mq.il.uil2.UILServerIL@17a95c6 connectionProperties={UIL_ADDRESS_KEY=192.168.3.92, UIL_CHUNKSIZE_KEY=1000000, UIL_TCPNODELAY_KEY=yes, ClientILService=org.jboss.mq.il.uil2.UILClientILService, UIL_PORT_KEY=8093, UIL_BUFFERSIZE_KEY=2048, PingPeriod=60000}]
                  2005-01-11 17:09:03,015 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin ReadTask.run
                  2005-01-11 17:09:03,015 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin WriteTask.run
                  2005-01-11 17:09:03,015 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectOutputStream
                  2005-01-11 17:09:03,015 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin ReadTask.run
                  2005-01-11 17:09:03,015 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin WriteTask.run
                  2005-01-11 17:09:03,015 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectOutputStream
                  2005-01-11 17:09:03,015 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectInputStream
                  2005-01-11 17:09:03,015 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectInputStream
                  2005-01-11 17:09:03,015 DEBUG [org.jboss.mq.il.uil2.UILClientILService] Starting
                  2005-01-11 17:09:03,015 DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler] Setting up the UILClientIL Connection
                  2005-01-11 17:09:03,015 DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler] The UILClientIL Connection is set up
                  2005-01-11 17:09:03,031 DEBUG [org.jboss.mq.referenceable.SpyDestinationObjectFactory] SpyDestinationObjectFactory->getObjectInstance()
                  2005-01-11 17:09:03,031 DEBUG [org.jboss.mq.il.uil2.SocketManager] End ReadTask.run
                  2005-01-11 17:09:03,031 DEBUG [org.jboss.mq.il.uil2.SocketManager] End WriteTask.run
                  2005-01-11 17:09:03,031 DEBUG [org.jboss.mq.il.uil2.UILClientILService] Stopping
                  2005-01-11 17:09:03,031 DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler] Exiting on IOE
                  java.net.SocketException: socket closed
                  at java.net.SocketInputStream.socketRead0(Native Method)
                  at java.net.SocketInputStream.read(SocketInputStream.java:129)
                  at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
                  at java.io.BufferedInputStream.read(BufferedInputStream.java:201)
                  at org.jboss.util.stream.NotifyingBufferedInputStream.read(NotifyingBufferedInputStream.java:67)
                  at java.io.ObjectInputStream$PeekInputStream.peek(ObjectInputStream.java:2133)
                  at java.io.ObjectInputStream$BlockDataInputStream.readBlockHeader(ObjectInputStream.java:2313)
                  at java.io.ObjectInputStream$BlockDataInputStream.refill(ObjectInputStream.java:2380)
                  at java.io.ObjectInputStream$BlockDataInputStream.read(ObjectInputStream.java:2452)
                  at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2601)
                  at java.io.ObjectInputStream.readByte(ObjectInputStream.java:845)
                  at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:279)
                  at java.lang.Thread.run(Thread.java:534)
                  2005-01-11 17:09:03,031 DEBUG [org.jboss.mq.il.uil2.SocketManager] End ReadTask.run
                  2005-01-11 17:09:03,031 DEBUG [org.jboss.mq.il.uil2.SocketManager] End WriteTask.run
                  2005-01-11 17:09:03,078 DEBUG [org.jboss.mq.referenceable.SpyConnectionFactoryObjectFactory] Extracting SpyConnectionFactory from reference
                  2005-01-11 17:09:03,078 DEBUG [org.jboss.mq.referenceable.SpyConnectionFactoryObjectFactory] The GenericConnectionFactory is: GenericConnectionFactory[server=org.jboss.mq.il.uil2.UILServerIL@d4aaf6 connectionProperties={UIL_ADDRESS_KEY=192.168.3.92, UIL_CHUNKSIZE_KEY=1000000, UIL_TCPNODELAY_KEY=yes, ClientILService=org.jboss.mq.il.uil2.UILClientILService, UIL_PORT_KEY=8093, UIL_BUFFERSIZE_KEY=2048, PingPeriod=60000}]
                  2005-01-11 17:09:03,078 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin ReadTask.run
                  2005-01-11 17:09:03,078 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin WriteTask.run
                  2005-01-11 17:09:03,078 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectOutputStream
                  2005-01-11 17:09:03,078 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin ReadTask.run
                  2005-01-11 17:09:03,078 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectInputStream
                  2005-01-11 17:09:03,078 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin WriteTask.run
                  2005-01-11 17:09:03,078 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectOutputStream
                  2005-01-11 17:09:03,078 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectInputStream
                  2005-01-11 17:09:03,093 DEBUG [org.jboss.mq.il.uil2.UILClientILService] Starting
                  2005-01-11 17:09:03,093 DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler] Setting up the UILClientIL Connection
                  2005-01-11 17:09:03,093 DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler] The UILClientIL Connection is set up
                  2005-01-11 17:09:03,093 DEBUG [org.jboss.mq.referenceable.SpyDestinationObjectFactory] SpyDestinationObjectFactory->getObjectInstance()
                  2005-01-11 17:09:03,093 DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler] Exiting on IOE
                  java.io.EOFException
                  at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2603)
                  at java.io.ObjectInputStream.readByte(ObjectInputStream.java:845)
                  at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:279)
                  at java.lang.Thread.run(Thread.java:534)
                  2005-01-11 17:09:03,093 DEBUG [org.jboss.mq.il.uil2.SocketManager] End ReadTask.run
                  2005-01-11 17:09:03,093 DEBUG [org.jboss.mq.il.uil2.UILClientILService] Stopping
                  2005-01-11 17:09:03,093 DEBUG [org.jboss.mq.il.uil2.SocketManager] End WriteTask.run
                  2005-01-11 17:09:03,109 DEBUG [org.jboss.mq.il.uil2.SocketManager] End ReadTask.run
                  2005-01-11 17:09:03,109 DEBUG [org.jboss.mq.il.uil2.SocketManager] End WriteTask.run
                  2005-01-11 17:09:03,140 DEBUG [org.jboss.mq.referenceable.SpyConnectionFactoryObjectFactory] Extracting SpyConnectionFactory from reference
                  2005-01-11 17:09:03,140 DEBUG [org.jboss.mq.referenceable.SpyConnectionFactoryObjectFactory] The GenericConnectionFactory is: GenericConnectionFactory[server=org.jboss.mq.il.uil2.UILServerIL@fcc6e8 connectionProperties={UIL_ADDRESS_KEY=192.168.3.92, UIL_CHUNKSIZE_KEY=1000000, UIL_TCPNODELAY_KEY=yes, ClientILService=org.jboss.mq.il.uil2.UILClientILService, UIL_PORT_KEY=8093, UIL_BUFFERSIZE_KEY=2048, PingPeriod=60000}]
                  2005-01-11 17:09:03,140 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin ReadTask.run
                  2005-01-11 17:09:03,140 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin WriteTask.run
                  2005-01-11 17:09:03,140 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectOutputStream
                  2005-01-11 17:09:03,140 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin ReadTask.run
                  2005-01-11 17:09:03,140 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin WriteTask.run
                  2005-01-11 17:09:03,140 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectOutputStream
                  2005-01-11 17:09:03,140 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectInputStream
                  2005-01-11 17:09:03,140 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectInputStream
                  2005-01-11 17:09:03,140 DEBUG [org.jboss.mq.il.uil2.UILClientILService] Starting
                  2005-01-11 17:09:03,140 DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler] Setting up the UILClientIL Connection
                  2005-01-11 17:09:03,140 DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler] The UILClientIL Connection is set up
                  2005-01-11 17:09:03,156 DEBUG [org.jboss.mq.referenceable.SpyDestinationObjectFactory] SpyDestinationObjectFactory->getObjectInstance()
                  2005-01-11 17:09:03,156 DEBUG [org.jboss.mq.il.uil2.SocketManager] Exiting on unexpected error in read task
                  java.lang.OutOfMemoryError: unable to create new native thread
                  at java.lang.Thread.start(Native Method)
                  at EDU.oswego.cs.dl.util.concurrent.PooledExecutor.addThread(PooledExecutor.java:520)
                  at EDU.oswego.cs.dl.util.concurrent.PooledExecutor.execute(PooledExecutor.java:880)
                  at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:296)
                  at java.lang.Thread.run(Thread.java:534)
                  2005-01-11 17:09:03,156 DEBUG [org.jboss.mq.il.uil2.SocketManager] End ReadTask.run
                  2005-01-11 17:09:03,156 DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler] Exiting on IOE
                  java.io.EOFException
                  at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2603)
                  at java.io.ObjectInputStream.readByte(ObjectInputStream.java:845)
                  at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:279)
                  at java.lang.Thread.run(Thread.java:534)
                  2005-01-11 17:09:03,156 DEBUG [org.jboss.mq.il.uil2.SocketManager] End ReadTask.run
                  2005-01-11 17:09:03,156 DEBUG [org.jboss.mq.il.uil2.UILClientILService] Stopping
                  2005-01-11 17:09:03,156 DEBUG [org.jboss.mq.il.uil2.SocketManager] End WriteTask.run
                  2005-01-11 17:09:03,171 DEBUG [org.jboss.mq.il.uil2.SocketManager] End WriteTask.run

                  • 6. Re: Out of Memory Error
                    mark.bramnik

                    We have the same issues with Jboss/JMS

                    We're running a clustered JBoss application on JBoss 4.0.4 and java1.5

                    We have a log4j appender that logs the messages to JMS queue. The messages are consumed by MDB.

                    I've used "jconsole" and noticed that each time the JMS message is sent to HA-JMS queue the number of threads is increased. The "ReadTask"/"WriteTask" is started and never ends. It looks like it has a "wait" call inside. So we end with too many threads and OutOfMemoryError on Linux based server.

                    Is it a known bug ? Does somebody know what is workaround?



                    • 7. Re: Out of Memory Error
                      relgames

                      Hi!
                      We have the same issues.

                      We send many JMS messages and JBoss fails with OutOfMemory Exception.

                      2007-06-11 21:03:26,965 WARN [org.jboss.resource.adapter.jms.inflow.JmsActivation] Failure in jms activation org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@94a25c(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainActivatorQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      org.jboss.mq.SpyJMSException: Exiting on IOE; - nested throwable: (java.net.SocketTimeoutException: Read timed out)
                       at org.jboss.mq.SpyJMSException.getAsJMSException(SpyJMSException.java:72)
                       at org.jboss.mq.Connection.asynchFailure(Connection.java:423)
                       at org.jboss.mq.il.uil2.UILClientILService.asynchFailure(UILClientILService.java:174)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.handleStop(SocketManager.java:439)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:371)
                       at java.lang.Thread.run(Thread.java:595)
                      Caused by: java.net.SocketTimeoutException: Read timed out
                       at java.net.SocketInputStream.socketRead0(Native Method)
                       at java.net.SocketInputStream.read(SocketInputStream.java:129)
                       at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
                       at java.io.BufferedInputStream.read(BufferedInputStream.java:235)
                       at org.jboss.util.stream.NotifyingBufferedInputStream.read(NotifyingBufferedInputStream.java:79)
                       at java.io.ObjectInputStream$PeekInputStream.peek(ObjectInputStream.java:2196)
                       at java.io.ObjectInputStream$BlockDataInputStream.readBlockHeader(ObjectInputStream.java:2376)
                       at java.io.ObjectInputStream$BlockDataInputStream.refill(ObjectInputStream.java:2443)
                       at java.io.ObjectInputStream$BlockDataInputStream.read(ObjectInputStream.java:2515)
                       at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2664)
                       at java.io.ObjectInputStream.readByte(ObjectInputStream.java:875)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:316)
                       ... 1 more
                      2007-06-11 21:03:27,060 WARN [org.jboss.resource.adapter.jms.inflow.JmsActivation] Failure in jms activation org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1544942(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/KeywordWeightService isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      org.jboss.mq.SpyJMSException: Exiting on IOE; - nested throwable: (java.net.SocketTimeoutException: Read timed out)
                       at org.jboss.mq.SpyJMSException.getAsJMSException(SpyJMSException.java:72)
                       at org.jboss.mq.Connection.asynchFailure(Connection.java:423)
                       at org.jboss.mq.il.uil2.UILClientILService.asynchFailure(UILClientILService.java:174)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.handleStop(SocketManager.java:439)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:371)
                       at java.lang.Thread.run(Thread.java:595)
                      Caused by: java.net.SocketTimeoutException: Read timed out
                       at java.net.SocketInputStream.socketRead0(Native Method)
                       at java.net.SocketInputStream.read(SocketInputStream.java:129)
                       at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
                       at java.io.BufferedInputStream.read(BufferedInputStream.java:235)
                       at org.jboss.util.stream.NotifyingBufferedInputStream.read(NotifyingBufferedInputStream.java:79)
                       at java.io.ObjectInputStream$PeekInputStream.peek(ObjectInputStream.java:2196)
                       at java.io.ObjectInputStream$BlockDataInputStream.readBlockHeader(ObjectInputStream.java:2376)
                       at java.io.ObjectInputStream$BlockDataInputStream.refill(ObjectInputStream.java:2443)
                       at java.io.ObjectInputStream$BlockDataInputStream.read(ObjectInputStream.java:2515)
                       at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2664)
                       at java.io.ObjectInputStream.readByte(ObjectInputStream.java:875)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:316)
                       ... 1 more
                      2007-06-11 21:03:27,123 WARN [org.jboss.resource.adapter.jms.inflow.JmsActivation] Failure in jms activation org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1c1e949(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/RelatedKeywords isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      org.jboss.mq.SpyJMSException: Exiting on IOE; - nested throwable: (java.net.SocketTimeoutException: Read timed out)
                       at org.jboss.mq.SpyJMSException.getAsJMSException(SpyJMSException.java:72)
                       at org.jboss.mq.Connection.asynchFailure(Connection.java:423)
                       at org.jboss.mq.il.uil2.UILClientILService.asynchFailure(UILClientILService.java:174)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.handleStop(SocketManager.java:439)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:371)
                       at java.lang.Thread.run(Thread.java:595)
                      Caused by: java.net.SocketTimeoutException: Read timed out
                       at java.net.SocketInputStream.socketRead0(Native Method)
                       at java.net.SocketInputStream.read(SocketInputStream.java:129)
                       at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
                       at java.io.BufferedInputStream.read(BufferedInputStream.java:235)
                       at org.jboss.util.stream.NotifyingBufferedInputStream.read(NotifyingBufferedInputStream.java:79)
                       at java.io.ObjectInputStream$PeekInputStream.peek(ObjectInputStream.java:2196)
                       at java.io.ObjectInputStream$BlockDataInputStream.readBlockHeader(ObjectInputStream.java:2376)
                       at java.io.ObjectInputStream$BlockDataInputStream.refill(ObjectInputStream.java:2443)
                       at java.io.ObjectInputStream$BlockDataInputStream.read(ObjectInputStream.java:2515)
                       at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2664)
                       at java.io.ObjectInputStream.readByte(ObjectInputStream.java:875)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:316)
                       ... 1 more
                      2007-06-11 21:03:27,185 WARN [org.jboss.resource.adapter.jms.inflow.JmsActivation] Failure in jms activation org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1779845(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/AdultApproverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      org.jboss.mq.SpyJMSException: Exiting on IOE; - nested throwable: (java.net.SocketTimeoutException: Read timed out)
                       at org.jboss.mq.SpyJMSException.getAsJMSException(SpyJMSException.java:72)
                       at org.jboss.mq.Connection.asynchFailure(Connection.java:423)
                       at org.jboss.mq.il.uil2.UILClientILService.asynchFailure(UILClientILService.java:174)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.handleStop(SocketManager.java:439)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:371)
                       at java.lang.Thread.run(Thread.java:595)
                      Caused by: java.net.SocketTimeoutException: Read timed out
                       at java.net.SocketInputStream.socketRead0(Native Method)
                       at java.net.SocketInputStream.read(SocketInputStream.java:129)
                       at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
                       at java.io.BufferedInputStream.read(BufferedInputStream.java:235)
                       at org.jboss.util.stream.NotifyingBufferedInputStream.read(NotifyingBufferedInputStream.java:79)
                       at java.io.ObjectInputStream$PeekInputStream.peek(ObjectInputStream.java:2196)
                       at java.io.ObjectInputStream$BlockDataInputStream.readBlockHeader(ObjectInputStream.java:2376)
                       at java.io.ObjectInputStream$BlockDataInputStream.refill(ObjectInputStream.java:2443)
                       at java.io.ObjectInputStream$BlockDataInputStream.read(ObjectInputStream.java:2515)
                       at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2664)
                       at java.io.ObjectInputStream.readByte(ObjectInputStream.java:875)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:316)
                       ... 1 more
                      2007-06-11 21:03:27,264 WARN [org.jboss.resource.adapter.jms.inflow.JmsActivation] Failure in jms activation org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@ecc1e1(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainApproverReceiverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      org.jboss.mq.SpyJMSException: Exiting on IOE; - nested throwable: (java.net.SocketTimeoutException: Read timed out)
                       at org.jboss.mq.SpyJMSException.getAsJMSException(SpyJMSException.java:72)
                       at org.jboss.mq.Connection.asynchFailure(Connection.java:423)
                       at org.jboss.mq.il.uil2.UILClientILService.asynchFailure(UILClientILService.java:174)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.handleStop(SocketManager.java:439)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:371)
                       at java.lang.Thread.run(Thread.java:595)
                      Caused by: java.net.SocketTimeoutException: Read timed out
                       at java.net.SocketInputStream.socketRead0(Native Method)
                       at java.net.SocketInputStream.read(SocketInputStream.java:129)
                       at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
                       at java.io.BufferedInputStream.read(BufferedInputStream.java:235)
                       at org.jboss.util.stream.NotifyingBufferedInputStream.read(NotifyingBufferedInputStream.java:79)
                       at java.io.ObjectInputStream$PeekInputStream.peek(ObjectInputStream.java:2196)
                       at java.io.ObjectInputStream$BlockDataInputStream.readBlockHeader(ObjectInputStream.java:2376)
                       at java.io.ObjectInputStream$BlockDataInputStream.refill(ObjectInputStream.java:2443)
                       at java.io.ObjectInputStream$BlockDataInputStream.read(ObjectInputStream.java:2515)
                       at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2664)
                       at java.io.ObjectInputStream.readByte(ObjectInputStream.java:875)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:316)
                       ... 1 more
                      2007-06-11 21:03:27,327 WARN [org.jboss.resource.adapter.jms.inflow.JmsActivation] Failure in jms activation org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@149f754(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/AdStatistics isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      org.jboss.mq.SpyJMSException: Exiting on IOE; - nested throwable: (java.io.EOFException)
                       at org.jboss.mq.SpyJMSException.getAsJMSException(SpyJMSException.java:72)
                       at org.jboss.mq.Connection.asynchFailure(Connection.java:423)
                       at org.jboss.mq.il.uil2.UILClientILService.asynchFailure(UILClientILService.java:174)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.handleStop(SocketManager.java:439)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:371)
                       at java.lang.Thread.run(Thread.java:595)
                      Caused by: java.io.EOFException
                       at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2666)
                       at java.io.ObjectInputStream.readByte(ObjectInputStream.java:875)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:316)
                       ... 1 more
                      2007-06-11 21:03:27,327 WARN [org.jboss.resource.adapter.jms.inflow.JmsActivation] Failure in jms activation org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@12e8a41(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/KeywordsInformation isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      org.jboss.mq.SpyJMSException: Exiting on IOE; - nested throwable: (java.io.EOFException)
                       at org.jboss.mq.SpyJMSException.getAsJMSException(SpyJMSException.java:72)
                       at org.jboss.mq.Connection.asynchFailure(Connection.java:423)
                       at org.jboss.mq.il.uil2.UILClientILService.asynchFailure(UILClientILService.java:174)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.handleStop(SocketManager.java:439)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:371)
                       at java.lang.Thread.run(Thread.java:595)
                      Caused by: java.io.EOFException
                       at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2666)
                       at java.io.ObjectInputStream.readByte(ObjectInputStream.java:875)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:316)
                       ... 1 more
                      2007-06-11 21:03:27,327 WARN [org.jboss.resource.adapter.jms.inflow.JmsActivation] Failure in jms activation org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@13d0d04(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainOwnerApproverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      org.jboss.mq.SpyJMSException: Exiting on IOE; - nested throwable: (java.net.SocketTimeoutException: Read timed out)
                       at org.jboss.mq.SpyJMSException.getAsJMSException(SpyJMSException.java:72)
                       at org.jboss.mq.Connection.asynchFailure(Connection.java:423)
                       at org.jboss.mq.il.uil2.UILClientILService.asynchFailure(UILClientILService.java:174)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.handleStop(SocketManager.java:439)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:371)
                       at java.lang.Thread.run(Thread.java:595)
                      Caused by: java.net.SocketTimeoutException: Read timed out
                       at java.net.SocketInputStream.socketRead0(Native Method)
                       at java.net.SocketInputStream.read(SocketInputStream.java:129)
                       at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
                       at java.io.BufferedInputStream.read(BufferedInputStream.java:235)
                       at org.jboss.util.stream.NotifyingBufferedInputStream.read(NotifyingBufferedInputStream.java:79)
                       at java.io.ObjectInputStream$PeekInputStream.peek(ObjectInputStream.java:2196)
                       at java.io.ObjectInputStream$BlockDataInputStream.readBlockHeader(ObjectInputStream.java:2376)
                       at java.io.ObjectInputStream$BlockDataInputStream.refill(ObjectInputStream.java:2443)
                       at java.io.ObjectInputStream$BlockDataInputStream.read(ObjectInputStream.java:2515)
                       at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2664)
                       at java.io.ObjectInputStream.readByte(ObjectInputStream.java:875)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:316)
                       ... 1 more
                      2007-06-11 21:03:27,342 WARN [org.jboss.resource.adapter.jms.inflow.JmsActivation] Failure in jms activation org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1779845(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/AdultApproverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      org.jboss.mq.SpyJMSException: Exiting on IOE; - nested throwable: (java.net.SocketTimeoutException: Read timed out)
                       at org.jboss.mq.SpyJMSException.getAsJMSException(SpyJMSException.java:72)
                       at org.jboss.mq.Connection.asynchFailure(Connection.java:423)
                       at org.jboss.mq.il.uil2.UILClientILService.asynchFailure(UILClientILService.java:174)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.handleStop(SocketManager.java:439)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:371)
                       at java.lang.Thread.run(Thread.java:595)
                      Caused by: java.net.SocketTimeoutException: Read timed out
                       at java.net.SocketInputStream.socketRead0(Native Method)
                       at java.net.SocketInputStream.read(SocketInputStream.java:129)
                       at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
                       at java.io.BufferedInputStream.read(BufferedInputStream.java:235)
                       at org.jboss.util.stream.NotifyingBufferedInputStream.read(NotifyingBufferedInputStream.java:79)
                       at java.io.ObjectInputStream$PeekInputStream.peek(ObjectInputStream.java:2196)
                       at java.io.ObjectInputStream$BlockDataInputStream.readBlockHeader(ObjectInputStream.java:2376)
                       at java.io.ObjectInputStream$BlockDataInputStream.refill(ObjectInputStream.java:2443)
                       at java.io.ObjectInputStream$BlockDataInputStream.read(ObjectInputStream.java:2515)
                       at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2664)
                       at java.io.ObjectInputStream.readByte(ObjectInputStream.java:875)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:316)
                       ... 1 more
                      2007-06-11 21:03:27,390 WARN [org.jboss.resource.adapter.jms.inflow.JmsActivation] Failure in jms activation org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@94a25c(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainActivatorQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      org.jboss.mq.SpyJMSException: Exiting on IOE; - nested throwable: (java.io.EOFException)
                       at org.jboss.mq.SpyJMSException.getAsJMSException(SpyJMSException.java:72)
                       at org.jboss.mq.Connection.asynchFailure(Connection.java:423)
                       at org.jboss.mq.il.uil2.UILClientILService.asynchFailure(UILClientILService.java:174)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.handleStop(SocketManager.java:439)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:371)
                       at java.lang.Thread.run(Thread.java:595)
                      Caused by: java.io.EOFException
                       at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2666)
                       at java.io.ObjectInputStream.readByte(ObjectInputStream.java:875)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:316)
                       ... 1 more
                      2007-06-11 21:03:27,484 WARN [org.jboss.resource.adapter.jms.inflow.JmsActivation] Failure in jms activation org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1544942(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/KeywordWeightService isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      org.jboss.mq.SpyJMSException: Exiting on IOE; - nested throwable: (java.io.EOFException)
                       at org.jboss.mq.SpyJMSException.getAsJMSException(SpyJMSException.java:72)
                       at org.jboss.mq.Connection.asynchFailure(Connection.java:423)
                       at org.jboss.mq.il.uil2.UILClientILService.asynchFailure(UILClientILService.java:174)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.handleStop(SocketManager.java:439)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:371)
                       at java.lang.Thread.run(Thread.java:595)
                      Caused by: java.io.EOFException
                       at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2666)
                       at java.io.ObjectInputStream.readByte(ObjectInputStream.java:875)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:316)
                       ... 1 more
                      2007-06-11 21:03:27,499 WARN [org.jboss.resource.adapter.jms.inflow.JmsActivation] Failure in jms activation org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@155b990(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainRegistrator isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      org.jboss.mq.SpyJMSException: Exiting on IOE; - nested throwable: (java.io.EOFException)
                       at org.jboss.mq.SpyJMSException.getAsJMSException(SpyJMSException.java:72)
                       at org.jboss.mq.Connection.asynchFailure(Connection.java:423)
                       at org.jboss.mq.il.uil2.UILClientILService.asynchFailure(UILClientILService.java:174)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.handleStop(SocketManager.java:439)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:371)
                       at java.lang.Thread.run(Thread.java:595)
                      Caused by: java.io.EOFException
                       at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2666)
                       at java.io.ObjectInputStream.readByte(ObjectInputStream.java:875)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:316)
                       ... 1 more
                      2007-06-11 21:03:27,547 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@155b990(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainRegistrator isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,547 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1c1e949(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/RelatedKeywords isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,562 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@11fcaf6(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/VirtualHosting isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,562 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@155b990(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainRegistrator isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,578 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1c1e949(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/RelatedKeywords isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,578 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@155b990(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainRegistrator isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,578 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1be3a66(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/TrademarkApproverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,578 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@13d0d04(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainOwnerApproverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,578 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@11fcaf6(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/VirtualHosting isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,578 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@13d0d04(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainOwnerApproverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,578 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@11fcaf6(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/VirtualHosting isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,578 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@11fcaf6(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/VirtualHosting isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,594 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1e62c83(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/RssInformation isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,594 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@155b990(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainRegistrator isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,594 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1e62c83(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/RssInformation isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,594 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@155b990(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainRegistrator isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,594 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1e62c83(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/RssInformation isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,609 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@13d0d04(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainOwnerApproverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,609 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1e62c83(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/RssInformation isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,609 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1779845(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/AdultApproverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,609 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1544942(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/KeywordWeightService isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,609 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1544942(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/KeywordWeightService isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,609 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1544942(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/KeywordWeightService isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,609 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1779845(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/AdultApproverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,609 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1e62c83(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/RssInformation isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,609 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1c1e949(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/RelatedKeywords isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,625 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@edb080(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainStatistics isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,625 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1779845(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/AdultApproverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,625 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@94a25c(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainActivatorQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,625 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1544942(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/KeywordWeightService isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,625 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1be3a66(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/TrademarkApproverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,625 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@ecc1e1(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainApproverReceiverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,625 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1c1e949(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/RelatedKeywords isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,625 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@11fcaf6(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/VirtualHosting isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,625 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@13d0d04(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainOwnerApproverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,625 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@edb080(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainStatistics isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,641 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1be3a66(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/TrademarkApproverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,641 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@149f754(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/AdStatistics isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,641 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@edb080(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainStatistics isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,641 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@155b990(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainRegistrator isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,641 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1779845(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/AdultApproverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,641 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1be3a66(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/TrademarkApproverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,641 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1be3a66(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/TrademarkApproverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,641 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@149f754(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/AdStatistics isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,641 WARN [org.jboss.resource.adapter.jms.inflow.JmsActivation] Failure in jms activation org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@149f754(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/AdStatistics isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      org.jboss.mq.SpyJMSException: Exiting on IOE; - nested throwable: (java.net.SocketTimeoutException: Read timed out)
                       at org.jboss.mq.SpyJMSException.getAsJMSException(SpyJMSException.java:72)
                       at org.jboss.mq.Connection.asynchFailure(Connection.java:423)
                       at org.jboss.mq.il.uil2.UILClientILService.asynchFailure(UILClientILService.java:174)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.handleStop(SocketManager.java:439)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:371)
                       at java.lang.Thread.run(Thread.java:595)
                      Caused by: java.net.SocketTimeoutException: Read timed out
                       at java.net.SocketInputStream.socketRead0(Native Method)
                       at java.net.SocketInputStream.read(SocketInputStream.java:129)
                       at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
                       at java.io.BufferedInputStream.read(BufferedInputStream.java:235)
                       at org.jboss.util.stream.NotifyingBufferedInputStream.read(NotifyingBufferedInputStream.java:79)
                       at java.io.ObjectInputStream$PeekInputStream.peek(ObjectInputStream.java:2196)
                       at java.io.ObjectInputStream$BlockDataInputStream.readBlockHeader(ObjectInputStream.java:2376)
                       at java.io.ObjectInputStream$BlockDataInputStream.refill(ObjectInputStream.java:2443)
                       at java.io.ObjectInputStream$BlockDataInputStream.read(ObjectInputStream.java:2515)
                       at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2664)
                       at java.io.ObjectInputStream.readByte(ObjectInputStream.java:875)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:316)
                       ... 1 more
                      2007-06-11 21:03:27,641 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@11fcaf6(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/VirtualHosting isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,641 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@ecc1e1(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainApproverReceiverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,641 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@edb080(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainStatistics isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,657 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@149f754(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/AdStatistics isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,657 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1c1e949(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/RelatedKeywords isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,657 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@ecc1e1(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainApproverReceiverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,657 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@149f754(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/AdStatistics isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,657 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@ecc1e1(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainApproverReceiverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,657 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1544942(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/KeywordWeightService isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,657 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@94a25c(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainActivatorQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,657 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@94a25c(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainActivatorQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,657 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@13d0d04(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainOwnerApproverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,672 WARN [org.jboss.resource.adapter.jms.inflow.JmsActivation] Failure in jms activation org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@ecc1e1(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainApproverReceiverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      org.jboss.mq.SpyJMSException: Exiting on IOE; - nested throwable: (java.io.EOFException)
                       at org.jboss.mq.SpyJMSException.getAsJMSException(SpyJMSException.java:72)
                       at org.jboss.mq.Connection.asynchFailure(Connection.java:423)
                       at org.jboss.mq.il.uil2.UILClientILService.asynchFailure(UILClientILService.java:174)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.handleStop(SocketManager.java:439)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:371)
                       at java.lang.Thread.run(Thread.java:595)
                      Caused by: java.io.EOFException
                       at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2666)
                       at java.io.ObjectInputStream.readByte(ObjectInputStream.java:875)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:316)
                       ... 1 more
                      2007-06-11 21:03:27,688 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@94a25c(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainActivatorQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,688 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@13d0d04(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainOwnerApproverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,688 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1779845(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/AdultApproverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,688 WARN [org.jboss.resource.adapter.jms.inflow.JmsActivation] Failure in jms activation org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@13d0d04(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainOwnerApproverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      org.jboss.mq.SpyJMSException: Exiting on IOE; - nested throwable: (java.net.SocketTimeoutException: Read timed out)
                       at org.jboss.mq.SpyJMSException.getAsJMSException(SpyJMSException.java:72)
                       at org.jboss.mq.Connection.asynchFailure(Connection.java:423)
                       at org.jboss.mq.il.uil2.UILClientILService.asynchFailure(UILClientILService.java:174)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.handleStop(SocketManager.java:439)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:371)
                       at java.lang.Thread.run(Thread.java:595)
                      Caused by: java.net.SocketTimeoutException: Read timed out
                       at java.net.SocketInputStream.socketRead0(Native Method)
                       at java.net.SocketInputStream.read(SocketInputStream.java:129)
                       at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
                       at java.io.BufferedInputStream.read(BufferedInputStream.java:235)
                       at org.jboss.util.stream.NotifyingBufferedInputStream.read(NotifyingBufferedInputStream.java:79)
                       at java.io.ObjectInputStream$PeekInputStream.peek(ObjectInputStream.java:2196)
                       at java.io.ObjectInputStream$BlockDataInputStream.readBlockHeader(ObjectInputStream.java:2376)
                       at java.io.ObjectInputStream$BlockDataInputStream.refill(ObjectInputStream.java:2443)
                       at java.io.ObjectInputStream$BlockDataInputStream.read(ObjectInputStream.java:2515)
                       at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2664)
                       at java.io.ObjectInputStream.readByte(ObjectInputStream.java:875)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:316)
                       ... 1 more
                      2007-06-11 21:03:27,735 WARN [org.jboss.resource.adapter.jms.inflow.JmsActivation] Failure in jms activation org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1be3a66(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/TrademarkApproverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      org.jboss.mq.SpyJMSException: Exiting on IOE; - nested throwable: (java.net.SocketTimeoutException: Read timed out)
                       at org.jboss.mq.SpyJMSException.getAsJMSException(SpyJMSException.java:72)
                       at org.jboss.mq.Connection.asynchFailure(Connection.java:423)
                       at org.jboss.mq.il.uil2.UILClientILService.asynchFailure(UILClientILService.java:174)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.handleStop(SocketManager.java:439)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:371)
                       at java.lang.Thread.run(Thread.java:595)
                      Caused by: java.net.SocketTimeoutException: Read timed out
                       at java.net.SocketInputStream.socketRead0(Native Method)
                       at java.net.SocketInputStream.read(SocketInputStream.java:129)
                       at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
                       at java.io.BufferedInputStream.read(BufferedInputStream.java:235)
                       at org.jboss.util.stream.NotifyingBufferedInputStream.read(NotifyingBufferedInputStream.java:79)
                       at java.io.ObjectInputStream$PeekInputStream.peek(ObjectInputStream.java:2196)
                       at java.io.ObjectInputStream$BlockDataInputStream.readBlockHeader(ObjectInputStream.java:2376)
                       at java.io.ObjectInputStream$BlockDataInputStream.refill(ObjectInputStream.java:2443)
                       at java.io.ObjectInputStream$BlockDataInputStream.read(ObjectInputStream.java:2515)
                       at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2664)
                       at java.io.ObjectInputStream.readByte(ObjectInputStream.java:875)
                       at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:316)
                       ... 1 more
                      2007-06-11 21:03:27,751 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@ecc1e1(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/DomainApproverReceiverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=15 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,751 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@149f754(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/AdStatistics isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAlive=60000 useDLQ=true DLQHandler=org.jboss.resource.adapter.jms.inflow.dlq.GenericDLQHandler DLQJndiName=queue/DLQ DLQUser=null DLQMaxResent=5)
                      2007-06-11 21:03:27,751 INFO [org.jboss.resource.adapter.jms.inflow.JmsActivation] Attempting to reconnect org.jboss.resource.adapter.jms.inflow.JmsActivationSpec@1be3a66(ra=org.jboss.resource.adapter.jms.JmsResourceAdapter@1a8a1a3 destination=queue/TrademarkApproverQueue isTopic=false tx=true durable=false reconnect=10 provider=java:/DefaultJMSProvider user=null maxMessages=1 minSession=1 maxSession=1 keepAli