[jboss-user] [Messaging, JMS & JBossMQ] - JMS Errors...

kistler59 do-not-reply at jboss.com
Wed Nov 8 13:19:24 EST 2006


I'm developing a web appication using stateless sessionbeans, servlets and hopefully the timerservice and an mdb.  I have a very simple example of this however I am getting an exception in my log which I can not determine the source of.

the mdb descriptor is as follows:
<ejb-jar>
  |     <enterprise-beans>
  |         <message-driven>
  |             <ejb-name>AutoSaveMDB</ejb-name>
  |             <ejb-class>com.autosave.mb.AutoSaveMDB</ejb-class>
  |             <transaction-type>Container</transaction-type>
  |             <acknowledge-mode>AUTO_ACKNOWLEDGE</acknowledge-mode>
  |             <message-driven-destination>
  |                 <destination-type>javax.jms.Queue</destination-type>
  |             </message-driven-destination>
  |             <resource-ref>
  |                 <res-ref-name>jms/DLASCF</res-ref-name>
  |                 <res-type>javax.jms.QueueConnectionFactory</res-type>
  |                 <res-auth>Container</res-auth>
  |             </resource-ref>
  |         </message-driven>
  |     </enterprise-beans>
  |     <assembly-descriptor>
  |       <container-transaction>
  |         <method>
  |           <ejb-name>AutoSaveMDB</ejb-name>
  |           <method-name>saveDL</method-name>
  |         </method>
  |         <trans-attribute>Required</trans-attribute>
  |       </container-transaction>
  |     </assembly-descriptor>
  | </ejb-jar>

timer service descriptor:
<server>
  |   <mbean code="org.jboss.varia.scheduler.Scheduler" 
  |          name="DLAutoSave.Monitor:service=Scheduler">
  |     <attribute name="StartAtStartup">true</attribute>
  |     <attribute name="SchedulableClass">com.dlens.autosave.timer.AutoSaveTask</attribute>
  |     <attribute name="SchedulableArguments">SampleArgument,42142</attribute>
  |     <attribute name="SchedulableArgumentTypes">java.lang.String,long</attribute>
  |     <attribute name="InitialStartDate">NOW</attribute>
  |     <attribute name="SchedulePeriod">15000</attribute>
  |     <attribute name="InitialRepetitions">-1</attribute>
  |   </mbean>
  | </server>

The actual mdb and timerservice code was written by a consultant but appears to be pretty sane.. however the exceptions do not indicate (intuitively to me atleast) that it originates in our source.  This is the exception we are getting - and it occurs each time the timerservice is triggered:

2006-11-08 10:52:27,482 DEBUG [org.jboss.varia.scheduler.Scheduler$Listener] Listener.handleNotification(), notification: javax.management.timer.TimerNotification[source=jboss:serv
  | ice=Timer][type=Schedule][message=Scheduler Notification]
  | 2006-11-08 10:52:27,482 DEBUG [org.jboss.varia.scheduler.Scheduler$Listener] Scheduler is started: true
  | 2006-11-08 10:52:27,482 INFO  [com.dlens.autosave.timer.AutoSaveTask] perform, now: Wed Nov 08 10:52:27 MST 2006, remaingRepetitions: -1, name: SampleArgument, value: 42142
  | 2006-11-08 10:52:27,483 DEBUG [org.jboss.mq.referenceable.SpyConnectionFactoryObjectFactory] Extracting SpyConnectionFactory from reference
  | 2006-11-08 10:52:27,485 DEBUG [org.jboss.mq.referenceable.SpyConnectionFactoryObjectFactory] The GenericConnectionFactory is: GenericConnectionFactory[server=org.jboss.mq.il.uil2.U
  | ILServerIL at c77c8 connectionProperties={ClientILService=org.jboss.mq.il.uil2.UILClientILService, UIL_TCPNODELAY_KEY=yes, UIL_CHUNKSIZE_KEY=1000000, UIL_CONNECTADDRESS_KEY=null, UIL_
  | CONNECTPORT_KEY=0, UIL_SOTIMEOUT_KEY=120000, UIL_RECEIVE_REPLIES_KEY=No, UIL_ADDRESS_KEY=63.172.124.26, UIL_PORT_KEY=8293, PingPeriod=60000, UIL_BUFFERSIZE_KEY=2048}]
  | 2006-11-08 10:52:27,487 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin ReadTask.run
  | 2006-11-08 10:52:27,487 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin WriteTask.run
  | 2006-11-08 10:52:27,488 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectOutputStream
  | 2006-11-08 10:52:27,488 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin WriteTask.run
  | 2006-11-08 10:52:27,488 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectOutputStream
  | 2006-11-08 10:52:27,488 DEBUG [org.jboss.mq.il.uil2.SocketManager] Begin ReadTask.run
  | 2006-11-08 10:52:27,488 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectInputStream
  | 2006-11-08 10:52:27,489 DEBUG [org.jboss.mq.il.uil2.SocketManager] Created ObjectInputStream
  | 2006-11-08 10:52:27,490 DEBUG [org.jboss.mq.il.uil2.UILClientILService] Starting
  | 2006-11-08 10:52:27,491 DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler] Setting up the UILClientIL Connection
  | 2006-11-08 10:52:27,491 DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler] The UILClientIL Connection is set up
  | 2006-11-08 10:52:27,492 DEBUG [org.jboss.mq.referenceable.SpyDestinationObjectFactory] SpyDestinationObjectFactory->getObjectInstance()
  | 2006-11-08 10:52:27,497 INFO  [com.dlens.autosave.mb.AutoSaveMDB] onMessage, this=4652787
  | 2006-11-08 10:52:27,497 INFO  [com.dlens.autosave.timer.AutoSaveTask] sendSaveMessage, sent text=DLXYZ
  | 2006-11-08 10:52:27,497 INFO  [com.dlens.autosave.mb.AutoSaveMDB] DLXYZ processed by: 4652787
  | 2006-11-08 10:52:27,497 INFO  [com.dlens.autosave.mb.AutoSaveMDB] saveDL dlkey=DLXYZ
  | 2006-11-08 10:52:27,499 DEBUG [org.jboss.mq.il.uil2.SocketManager] Failed to handle: org.jboss.mq.il.uil2.msgs.CloseMsg14875150[msgType: m_connectionClosing, msgID: -2147483615, er
  | ror: null]
  | java.io.IOException: Client is not connected
  |         at org.jboss.mq.il.uil2.SocketManager.internalSendMessage(SocketManager.java:265)
  |         at org.jboss.mq.il.uil2.SocketManager.sendReply(SocketManager.java:239)
  |         at org.jboss.mq.il.uil2.ServerSocketManagerHandler.handleMsg(ServerSocketManagerHandler.java:128)
  |         at org.jboss.mq.il.uil2.SocketManager$ReadTask.handleMsg(SocketManager.java:396)
  |         at org.jboss.mq.il.uil2.msgs.BaseMsg.run(BaseMsg.java:392)
  |         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:748)
  |         at java.lang.Thread.run(Thread.java:595)
  | 2006-11-08 10:52:27,499 DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler] Exiting on IOE
  | java.net.SocketException: Socket closed
  |         at java.net.SocketInputStream.read(SocketInputStream.java:162)
  |         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:2200)
  |         at java.io.ObjectInputStream$BlockDataInputStream.readBlockHeader(ObjectInputStream.java:2380)
  |         at java.io.ObjectInputStream$BlockDataInputStream.refill(ObjectInputStream.java:2447)
  |         at java.io.ObjectInputStream$BlockDataInputStream.read(ObjectInputStream.java:2519)
  |         at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2668)
  |         at java.io.ObjectInputStream.readByte(ObjectInputStream.java:864)
  |         at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:317)
  |         at java.lang.Thread.run(Thread.java:595)
  | 2006-11-08 10:52:27,500 DEBUG [org.jboss.mq.il.uil2.SocketManager] End WriteTask.run
  | 2006-11-08 10:52:27,500 DEBUG [org.jboss.mq.il.uil2.SocketManager] End ReadTask.run
  | 2006-11-08 10:52:27,500 DEBUG [org.jboss.mq.il.uil2.SocketManager] End ReadTask.run
  | 2006-11-08 10:52:27,499 DEBUG [org.jboss.mq.il.uil2.UILClientILService] Stopping
  | 2006-11-08 10:52:27,499 DEBUG [org.jboss.mq.il.uil2.SocketManager] Failed to send error reply
  | java.io.IOException: Client is not connected
  |         at org.jboss.mq.il.uil2.SocketManager.internalSendMessage(SocketManager.java:265)
  |         at org.jboss.mq.il.uil2.SocketManager.access$800(SocketManager.java:52)
  |         at org.jboss.mq.il.uil2.SocketManager$ReadTask.handleMsg(SocketManager.java:409)
  |         at org.jboss.mq.il.uil2.msgs.BaseMsg.run(BaseMsg.java:392)
  |         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:748)
  |         at java.lang.Thread.run(Thread.java:595)
  | 2006-11-08 10:52:27,500 DEBUG [org.jboss.varia.scheduler.Scheduler$Listener] Remaining Repititions: -1, wait for next call to stop: false
  | 2006-11-08 10:52:27,499 DEBUG [org.jboss.mq.il.uil2.SocketManager] End WriteTask.run

I'm really kinda stumped.. any thoughts or directions I should follow?

Thanks
-Keith

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3984263#3984263

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3984263



More information about the jboss-user mailing list