11 Replies Latest reply on Jun 4, 2003 4:41 AM by stephanenicoll

    JMS mapping to postgres generates WARNING

      Hi,

      We've used both JBoss 3.0.7 and 3.2.1 with Postgresql 7.3.2 (default configuration)

      We mapped JMS to a DB in postgres using the following DS (3.2.1):

      <?xml version="1.0" encoding="UTF-8"?>


      <!-- Data source for the Postgres JBossMQ PM java:/jmsDS
      Database: jms
      User: mqagent
      Password: mqagent
      -->
      <local-tx-datasource>
      <jndi-name>jmsDS</jndi-name>
      <connection-url>jdbc:postgresql://kpserverdb/jms</connection-url>
      <driver-class>org.postgresql.Driver</driver-class>
      <user-name>mqagent</user-name>
      mqagent
      <min-pool-size>0</min-pool-size>
      <max-pool-size>30</max-pool-size>
      <blocking-timeout-millis>5000</blocking-timeout-millis>
      <idle-timeout-minutes>15</idle-timeout-minutes>
      </local-tx-datasource>



      Then we updated the jbossmq-service.xml that way:


      <depends optional-attribute-name="MessageCache">jboss.mq:service=MessageCache
      <depends optional-attribute-name="DataSource">jboss.jca:service=LocalTxDS,name=jmsDS
      jboss.jca:service=LocalTxCM,name=jmsDS

      BLOB_TYPE=BYTES_BLOB
      INSERT_TX = INSERT INTO JMS_TRANSACTIONS (TXID) values(?)
      INSERT_MESSAGE = INSERT INTO JMS_MESSAGES (MESSAGEID, DESTINATION, MESSAGEBLOB, TXID, TXOP) VALUES(?,?,?,?,?)
      SELECT_ALL_UNCOMMITED_TXS = SELECT TXID FROM JMS_TRANSACTIONS
      SELECT_MAX_TX = SELECT MAX(TXID) FROM JMS_MESSAGES
      SELECT_MESSAGES_IN_DEST = SELECT MESSAGEID, MESSAGEBLOB FROM JMS_MESSAGES WHERE DESTINATION=?
      SELECT_MESSAGE = SELECT MESSAGEID, MESSAGEBLOB FROM JMS_MESSAGES WHERE MESSAGEID=? AND DESTINATION=?
      MARK_MESSAGE = UPDATE JMS_MESSAGES SET TXID=?, TXOP=? WHERE MESSAGEID=? AND DESTINATION=?
      DELETE_ALL_MESSAGE_WITH_TX = DELETE FROM JMS_MESSAGES WHERE TXID=?
      DELETE_TX = DELETE FROM JMS_TRANSACTIONS WHERE TXID = ?
      DELETE_MARKED_MESSAGES = DELETE FROM JMS_MESSAGES WHERE TXID=? AND TXOP=?
      DELETE_MESSAGE = DELETE FROM JMS_MESSAGES WHERE MESSAGEID=? AND DESTINATION=?
      CREATE_MESSAGE_TABLE = CREATE TABLE JMS_MESSAGES (MESSAGEID INTEGER NOT NULL, DESTINATION VARCHAR(50) NOT NULL, TXID INTEGER, TXOP CHAR(1), MESSAGEBLOB BYTEA, PRIMARY KEY (MESSAGEID, DESTINATION))
      CREATE_TX_TABLE = CREATE TABLE JMS_TRANSACTIONS (TXID INTEGER)
      CREATE_TABLES_ON_STARTUP=false



      We have 2 other DB on the same postgresql server with entity beans running into JBoss. Those work fine.

      The problem is that each operation made by JBossMQ on the DB generates an SQL Warning

      WARNING: COMMIT: not in a transaction

      Could somebody explain why JBossMQ only generates those warning and how we can avoid them?

      Thanks

        • 1. Re: JMS mapping to postgres generates WARNING

          Can you enable TRACE logging
          for
          org.jboss.mq.pm
          and
          org.jboss.tm

          This should help to show what is going on.

          Regards,
          Adrian

          • 2. Re: JMS mapping to postgres generates WARNING

            Here it is. I got a *lot* of:

            TxConnectionManager - getManagedConnection returning unassociated connection

            • 3. Re: JMS mapping to postgres generates WARNING

              That message just means the connection
              has not been previously assigned to the
              transaction.

              Trying posting a snippet of the log up-to
              the point where you get the postgres message.

              Regards,
              Adrian

              • 4. Re: JMS mapping to postgres generates WARNING

                I know that but I never got the msg saying that the connection is linked to a Tx.

                I wil rerun a test with a complete stacktrace

                • 5. Re: JMS mapping to postgres generates WARNING

                  2003-06-02 16:12:45,894 [ Worker-0] DEBUG rg.jboss.mq.il.oil.OILClientIL - ConnectionReceiverOILClient is connecting to: 192.168.6.33:35866
                  2003-06-02 16:12:45,940 [ Worker-1] DEBUG rg.jboss.mq.il.oil.OILClientIL - ConnectionReceiverOILClient is connecting to: 192.168.6.33:35869
                  2003-06-02 16:12:46,200 [ Worker-2] DEBUG rg.jboss.mq.il.oil.OILClientIL - ConnectionReceiverOILClient is connecting to: 192.168.6.33:35872
                  2003-06-02 16:12:46,569 [ Worker-1] INFO ionmanager.TxConnectionManager - getManagedConnection returning unassociated connection
                  2003-06-02 16:12:46,704 [ Worker-2] INFO ionmanager.TxConnectionManager - getManagedConnection returning unassociated connection
                  2003-06-02 16:12:46,782 [ Worker-0] DEBUG le.SpyDestinationObjectFactory - SpyDestinationObjectFactory->getObjectInstance()
                  2003-06-02 16:12:46,785 [ Worker-0] DEBUG ss.mq.GenericConnectionFactory - Handing out ClientIL: org.jboss.mq.il.jvm.JVMClientILService
                  2003-06-02 16:12:46,796 [ Worker-0] DEBUG org.jboss.mq.SpySession - Session closing.
                  2003-06-02 16:12:46,796 [ Worker-0] DEBUG org.jboss.mq.Connection - Notifiying the server of close
                  2003-06-02 16:12:46,816 [ Worker-0] INFO ionmanager.TxConnectionManager - getManagedConnection returning unassociated connection
                  2003-06-02 16:12:46,817 [ Worker-0] DEBUG .LocalManagedConnectionFactory - Using properties: {user=mqagent, password=mqagent}
                  2003-06-02 16:12:46,824 [ Worker-0] INFO ionmanager.TxConnectionManager - getManagedConnection returning unassociated connection
                  2003-06-02 16:12:46,876 [ Worker-2] INFO ionmanager.TxConnectionManager - getManagedConnection returning unassociated connection
                  2003-06-02 16:12:46,968 [ Worker-0] INFO ionmanager.TxConnectionManager - getManagedConnection returning unassociated connection
                  2003-06-02 16:12:46,970 [ Worker-0] DEBUG uery.Sequence.findByPrimaryKey - Executing SQL: SELECT name FROM seq_block WHERE name=?
                  2003-06-02 16:12:47,107 [ Worker-0] DEBUG JDBCLoadEntityCommand.Sequence - Executing SQL: SELECT idx FROM seq_block WHERE (name=?)
                  2003-06-02 16:12:47,155 [ Worker-0] DEBUG CreateEntityCommand.LogMessage - Create: pk=250
                  2003-06-02 16:12:47,155 [ Worker-0] DEBUG CreateEntityCommand.LogMessage - Executing SQL: SELECT COUNT(*) FROM log_messages WHERE log_id=?
                  2003-06-02 16:12:47,371 [ Worker-0] INFO ionmanager.TxConnectionManager - getManagedConnection returning unassociated connection
                  2003-06-02 16:12:47,516 [ Worker-0] DEBUG CreateEntityCommand.LogMessage - [LogMessage.ejbCreate] Executing SQL: INSERT INTO log_messages (log_id, actor_id, status_code, status_description, object, timestamp, object_type, log_level) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
                  2003-06-02 16:12:47,611 [ Worker-0] DEBUG CreateEntityCommand.LogMessage - Rows affected = 1
                  2003-06-02 16:12:47,636 [ Worker-0] DEBUG DBCStoreEntityCommand.Sequence - Executing SQL: UPDATE seq_block SET idx=? WHERE name=?
                  2003-06-02 16:12:47,638 [ Worker-0] DEBUG DBCStoreEntityCommand.Sequence - Rows affected = 1
                  2003-06-02 16:12:47,649 [ Worker-0] INFO ionmanager.TxConnectionManager - getManagedConnection returning unassociated connection
                  2003-06-02 16:12:47,650 [ Worker-0] DEBUG yKeyQuery.DSP.findByPrimaryKey - Executing SQL: SELECT dsp_id FROM dsp WHERE dsp_id=?
                  2003-06-02 16:12:48,037 [ Worker-0] INFO ionmanager.TxConnectionManager - getManagedConnection returning unassociated connection
                  2003-06-02 16:12:48,055 [ Worker-0] DEBUG jdbc.JDBCLoadEntityCommand.DSP - Executing SQL: SELECT name, return_flag, return_amount, return_currency, default_graceperiod, country_id FROM dsp WHERE (dsp_id=?)
                  2003-06-02 16:12:48,064 [ Worker-0] INFO ionmanager.TxConnectionManager - getManagedConnection returning unassociated connection
                  2003-06-02 16:12:48,178 [ Worker-0] INFO ionmanager.TxConnectionManager - getManagedConnection returning unassociated connection
                  2003-06-02 16:12:48,179 [ Worker-0] DEBUG ryKeyQuery.KP.findByPrimaryKey - Executing SQL: SELECT kp_id FROM kp WHERE kp_id=?
                  2003-06-02 16:12:48,210 [ Worker-0] DEBUG .jdbc.JDBCLoadEntityCommand.KP - Executing SQL: SELECT partner_specific_kp_id, country_id FROM kp WHERE (kp_id=?)
                  2003-06-02 16:12:48,242 [ Worker-0] INFO ionmanager.TxConnectionManager - getManagedConnection returning unassociated connection
                  2003-06-02 16:12:48,244 [ Worker-0] DEBUG Query.Process.findByPrimaryKey - Executing SQL: SELECT process_id FROM process WHERE process_id=?
                  2003-06-02 16:12:48,261 [ Worker-0] DEBUG .JDBCLoadEntityCommand.Process - Executing SQL: SELECT description FROM process WHERE (process_id=?)
                  2003-06-02 16:12:48,309 [ Worker-0] INFO ionmanager.TxConnectionManager - getManagedConnection returning unassociated connection
                  2003-06-02 16:12:48,310 [ Worker-0] DEBUG y.ParcelPlace.findByPrimaryKey - Executing SQL: SELECT parcel_place_id FROM parcel_place WHERE parcel_place_id=?
                  2003-06-02 16:12:48,328 [ Worker-0] DEBUG ry.ParcelType.findByPrimaryKey - Executing SQL: SELECT parceltype_id FROM parcel_type WHERE parceltype_id=?
                  2003-06-02 16:12:48,339 [ Worker-0] DEBUG Query.Process.findByPrimaryKey - Executing SQL: SELECT process_id FROM process WHERE process_id=?
                  2003-06-02 16:12:48,346 [ Worker-0] DEBUG y.ParcelState.findByPrimaryKey - Executing SQL: SELECT parcelstate_id FROM parcel_state WHERE parcelstate_id=?
                  2003-06-02 16:12:48,378 [ Worker-0] DEBUG ryKeyQuery.KP.findByPrimaryKey - Executing SQL: SELECT kp_id FROM kp WHERE kp_id=?
                  2003-06-02 16:12:48,381 [ Worker-0] DEBUG yKeyQuery.DSP.findByPrimaryKey - Executing SQL: SELECT dsp_id FROM dsp WHERE dsp_id=?
                  2003-06-02 16:12:48,385 [ Worker-0] DEBUG jdbc.JDBCLoadEntityCommand.DSP - Executing SQL: SELECT name, return_flag, return_amount, return_currency, default_graceperiod, country_id FROM dsp WHERE (dsp_id=?)
                  2003-06-02 16:12:48,426 [ Worker-0] DEBUG JDBCCreateEntityCommand.Parcel - Create: pk=88dcf096c0a80621002b25e6cbf7b58f
                  2003-06-02 16:12:48,426 [ Worker-0] DEBUG JDBCCreateEntityCommand.Parcel - Executing SQL: SELECT COUNT(*) FROM parcel WHERE kialaparcel_id=?
                  2003-06-02 16:12:48,615 [ Worker-0] DEBUG JDBCCreateEntityCommand.Parcel - [Parcel.ejbCreate] Executing SQL: INSERT INTO parcel (kialaparcel_id, scanner_parcel_id, parcel_number, invoice_number, enseigne, multi_parcel_group, customer_name, cod_amount, cod_currency, return_amount, return_currency, expected_delivery_date, gift_id, id_required, last_tt_code, dsp_parcel_id, graceperiod, parceltype_id, cod_paymenttype_id, return_paymenttype_id, parcel_place_id, kp_id, process_id, parcelstate_id, dsp_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
                  2003-06-02 16:12:48,646 [ Worker-0] DEBUG JDBCCreateEntityCommand.Parcel - Rows affected = 1
                  2003-06-02 16:12:48,679 [ Worker-0] DEBUG CLoadEntityCommand.ParcelPlace - Executing SQL: SELECT description FROM parcel_place WHERE (parcel_place_id=?)
                  2003-06-02 16:12:48,684 [ Worker-0] DEBUG .jdbc.JDBCLoadEntityCommand.KP - Executing SQL: SELECT partner_specific_kp_id, country_id FROM kp WHERE (kp_id=?)
                  2003-06-02 16:12:48,688 [ Worker-0] DEBUG BCLoadEntityCommand.ParcelType - Executing SQL: SELECT description FROM parcel_type WHERE (parceltype_id=?)
                  2003-06-02 16:12:48,691 [ Worker-0] DEBUG .JDBCLoadEntityCommand.Process - Executing SQL: SELECT description FROM process WHERE (process_id=?)
                  2003-06-02 16:12:48,694 [ Worker-0] DEBUG CLoadEntityCommand.ParcelState - Executing SQL: SELECT description FROM parcel_state WHERE (parcelstate_id=?)
                  2003-06-02 16:12:48,701 [ Worker-0] DEBUG .JDBCStoreEntityCommand.Parcel - Executing SQL: UPDATE parcel SET parceltype_id=?, parcel_place_id=?, kp_id=?, process_id=?, parcelstate_id=?, dsp_id=? WHERE kialaparcel_id=?
                  2003-06-02 16:12:48,717 [ Worker-0] DEBUG .JDBCStoreEntityCommand.Parcel - Rows affected = 1
                  2003-06-02 16:12:48,718 [ Worker-0] DEBUG BQLQuery.Barcode.findByBarcode - Executing SQL: SELECT DISTINCT t0_o.barcode_id FROM barcode t0_o WHERE t0_o.barcode = ?
                  2003-06-02 16:12:48,754 [ Worker-0] DEBUG y.BarcodeType.findByPrimaryKey - Executing SQL: SELECT barcode_type_id FROM barcode_type WHERE barcode_type_id=?
                  2003-06-02 16:12:48,809 [ Worker-0] INFO ionmanager.TxConnectionManager - getManagedConnection returning unassociated connection
                  2003-06-02 16:12:48,809 [ Worker-0] DEBUG .LocalManagedConnectionFactory - Using properties: {user=kp, password=kp}
                  2003-06-02 16:12:48,870 [ Worker-0] DEBUG uery.Sequence.findByPrimaryKey - Executing SQL: SELECT name FROM seq_block WHERE name=?
                  2003-06-02 16:12:48,905 [ Worker-0] INFO ionmanager.TxConnectionManager - getManagedConnection returning unassociated connection
                  2003-06-02 16:12:48,906 [ Worker-0] DEBUG JDBCLoadEntityCommand.Sequence - Executing SQL: SELECT idx FROM seq_block WHERE (name=?)
                  2003-06-02 16:12:48,909 [ Worker-0] DEBUG DBCStoreEntityCommand.Sequence - Executing SQL: UPDATE seq_block SET idx=? WHERE name=?
                  2003-06-02 16:12:48,910 [ Worker-0] DEBUG DBCStoreEntityCommand.Sequence - Rows affected = 1
                  2003-06-02 16:12:48,917 [ Worker-0] DEBUG DBCCreateEntityCommand.Barcode - Create: pk=105
                  2003-06-02 16:12:48,918 [ Worker-0] DEBUG DBCCreateEntityCommand.Barcode - Executing SQL: SELECT COUNT(*) FROM barcode WHERE barcode_id=?
                  2003-06-02 16:12:48,919 [ Worker-0] DEBUG DBCCreateEntityCommand.Barcode - [Barcode.ejbCreate] Executing SQL: INSERT INTO barcode (barcode_id, barcode, kial

                  • 6. Re: JMS mapping to postgres generates WARNING

                    I don't see any messages from the
                    persistence manager, are you sure you
                    have enabled TRACE correctly?

                    Regards,
                    Adrian

                    • 7. Re: JMS mapping to postgres generates WARNING

                      Indeed my apologizes

                      Here it is

                      2003-06-03 15:07:00,476 TRACE [org.jboss.mq.il.oil.OILServerILService] Setting TcpNoDelay Option to:true
                      2003-06-03 15:07:00,477 TRACE [org.jboss.mq.server.TracingInterceptor] CALLED : authenticate
                      2003-06-03 15:07:00,477 TRACE [org.jboss.mq.security.ServerSecurityInterceptor] Autenticating user null/null
                      2003-06-03 15:07:00,477 TRACE [org.jboss.security.plugins.JaasSecurityManager.jbossmq] validateCache, info=org.jboss.security.plugins.JaasSecurityManager$DomainInfo@155e0bc
                      2003-06-03 15:07:00,477 TRACE [org.jboss.mq.security.SecurityManager] Username: null is authenticated
                      2003-06-03 15:07:00,477 TRACE [org.jboss.mq.security.SecurityManager] Adding group : class org.jboss.security.NestableGroup Roles(members:guest)
                      2003-06-03 15:07:00,477 TRACE [org.jboss.mq.server.TracingInterceptor] RETURN : authenticate
                      2003-06-03 15:07:00,515 TRACE [org.jboss.mq.server.TracingInterceptor] CALLED : getID
                      2003-06-03 15:07:00,516 TRACE [org.jboss.mq.server.TracingInterceptor] RETURN : getID
                      2003-06-03 15:07:00,525 TRACE [org.jboss.mq.server.TracingInterceptor] CALLED : ping
                      2003-06-03 15:07:00,525 TRACE [org.jboss.mq.server.TracingInterceptor] ARG : 1054645620515
                      2003-06-03 15:07:00,525 DEBUG [org.jboss.mq.il.oil.OILClientIL] ConnectionReceiverOILClient is connecting to: 192.168.6.33:37581
                      2003-06-03 15:07:00,530 TRACE [org.jboss.mq.server.TracingInterceptor] RETURN : ping
                      2003-06-03 15:07:00,549 TRACE [org.jboss.mq.server.TracingInterceptor] CALLED : addMessage
                      2003-06-03 15:07:00,549 TRACE [org.jboss.mq.server.TracingInterceptor] ARG : org.jboss.mq.SpyTextMessage {
                      Header {
                      jmsDestination : QUEUE.kp/v0.0.1/parcelInstruction
                      jmsDeliveryMode : 2
                      jmsExpiration : 0
                      jmsPriority : 4
                      jmsMessageID : ID:47-10546456205481
                      jmsTimeStamp : 1054645620548
                      jmsCorrelationID: null
                      jmsReplyTo : null
                      jmsType : null
                      jmsRedelivered : false
                      jmsPropertiesReadWrite:true
                      msgReadOnly : false
                      producerClientId: ID:47
                      }
                      Body {
                      text :<?xml version="1.0" encoding="UTF-8"?>
                      <!DOCTYPE create-parcel PUBLIC "-//Kiala SA//DTD Create Parcel 0.0.1//EN" "http://dtd.kiala.com/create-parcel_0_0_1.dtd">
                      <create-parcel>




                      <dsp-parcel-id>LOAD1</dsp-parcel-id>
                      BARLOAD1


                      Customer 1

                      <cod-amount currency="EUR">11.11</cod-amount>
                      <expected-delivery-date>2003-05-16 10:00:00</expected-delivery-date>
                      <process-id>1</process-id>

                      </create-parcel>

                      }
                      }
                      2003-06-03 15:07:00,549 TRACE [org.jboss.mq.security.SecurityManager] Checking authorize on subjectInfo: SubjectInfo {subject=Subject:
                      Principal: guest
                      Principal: Roles(members:guest)
                      ;principal=null;roles=Roles(members:guest) for rolePrincipals [guest]
                      2003-06-03 15:07:00,549 TRACE [org.jboss.mq.server.MessageCache] counter lock aquire 43
                      2003-06-03 15:07:00,549 TRACE [org.jboss.mq.server.MessageCache] counter lock release 43
                      2003-06-03 15:07:00,549 TRACE [org.jboss.mq.server.MessageCache] add lock aquire message 43 msg=3 hard NOT_STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909
                      2003-06-03 15:07:00,549 TRACE [org.jboss.mq.server.MessageCache] add lock aquire lruCache 43 msg=3 hard NOT_STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909
                      2003-06-03 15:07:00,549 TRACE [org.jboss.mq.server.MessageCache] add locks release43 msg=3 hard NOT_STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909
                      2003-06-03 15:07:00,549 TRACE [org.jboss.mq.server.MessageCache] run lock aquire, validateSoftReferenceDepth
                      2003-06-03 15:07:00,549 TRACE [org.jboss.mq.server.MessageCache] Memory usage serverity=0.29993507
                      2003-06-03 15:07:00,549 TRACE [org.jboss.mq.server.MessageCache] run lock release, validateSoftReferenceDepth
                      2003-06-03 15:07:00,549 TRACE [org.jboss.mq.server.MessageReference] getMessage lock aquire 43 msg=3 hard NOT_STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909
                      2003-06-03 15:07:00,549 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire message 43 msg=3 hard NOT_STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 wasHard=true
                      2003-06-03 15:07:00,549 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire lrucache 43 msg=3 hard NOT_STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 wasHard=true
                      2003-06-03 15:07:00,549 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent locks released 43 msg=3 hard NOT_STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 wasHard=true
                      2003-06-03 15:07:00,549 TRACE [org.jboss.mq.server.MessageReference] getMessage lock released 43 msg=3 hard NOT_STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909
                      2003-06-03 15:07:00,549 TRACE [org.jboss.mq.server.MessageReference] invalidate lock aquire 43 msg=3 hard NOT_STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909
                      2003-06-03 15:07:00,549 TRACE [org.jboss.mq.server.MessageReference] invalidate lock relased 43 msg=3 hard NOT_STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909
                      2003-06-03 15:07:00,549 TRACE [org.jboss.mq.pm.jdbc2.PersistenceManager] About to add message 43 msg=3 hard NOT_STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 transaction=null
                      2003-06-03 15:07:00,550 TRACE [org.jboss.tm.TransactionImpl] Created new instance for tx=TransactionImpl:XidImpl [FormatId=257, GlobalId=biohazard.dev.kiala.com//565, BranchQual=]
                      2003-06-03 15:07:00,550 TRACE [org.jboss.resource.connectionmanager.TxConnectionManager] subject: null
                      2003-06-03 15:07:00,550 INFO [org.jboss.resource.connectionmanager.TxConnectionManager] getManagedConnection returning unassociated connection
                      2003-06-03 15:07:00,550 TRACE [org.jboss.resource.connectionmanager.JBossManagedConnectionPool] supplying ManagedConnection from pool: org.jboss.resource.adapter.jdbc.local.LocalManagedConnection@b09fac
                      2003-06-03 15:07:00,550 TRACE [org.jboss.resource.connectionmanager.TxConnectionManager$TxConnectionEventListener] enlisting currenttx: TransactionImpl:XidImpl [FormatId=257, GlobalId=biohazard.dev.kiala.com//565, BranchQual=], ManagedConnection: org.jboss.resource.adapter.jdbc.local.LocalManagedConnection@b09fac
                      2003-06-03 15:07:00,550 TRACE [org.jboss.tm.TransactionImpl] enlistResource(): Entered, tx=TransactionImpl:XidImpl [FormatId=257, GlobalId=biohazard.dev.kiala.com//565, BranchQual=] status=STATUS_ACTIVE
                      2003-06-03 15:07:00,550 TRACE [org.jboss.tm.TransactionImpl] startResource(XidImpl [FormatId=257, GlobalId=biohazard.dev.kiala.com//565, BranchQual=1]) entered: org.jboss.resource.connectionmanager.TxConnectionManager$LocalXAResource@1c30dfa flags=0
                      2003-06-03 15:07:00,550 TRACE [org.jboss.resource.connectionmanager.TxConnectionManager$LocalXAResource] start, xid: XidImpl [FormatId=257, GlobalId=biohazard.dev.kiala.com//565, BranchQual=1], flags: 0
                      2003-06-03 15:07:00,551 TRACE [org.jboss.tm.TransactionImpl] startResource(XidImpl [FormatId=257, GlobalId=biohazard.dev.kiala.com//565, BranchQual=1]) leaving: org.jboss.resource.connectionmanager.TxConnectionManager$LocalXAResource@1c30dfa flags=0
                      2003-06-03 15:07:00,551 TRACE [org.jboss.tm.TransactionImpl] registerSynchronization(): Entered, tx=TransactionImpl:XidImpl [FormatId=257, GlobalId=biohazard.dev.kiala.com//565, BranchQual=] status=STATUS_ACTIVE
                      2003-06-03 15:07:00,551 TRACE [org.jboss.resource.connectionmanager.CachedConnectionManager] registering connection from org.jboss.resource.connectionmanager.TxConnectionManager@511a6e, connection record: org.jboss.resource.connectionmanager.ConnectionRecord@44ec30, key: null
                      2003-06-03 15:07:00,551 TRACE [org.jboss.mq.server.MessageReference] getMessage lock aquire 43 msg=3 hard NOT_STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909
                      2003-06-03 15:07:00,551 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire message 43 msg=3 hard NOT_STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 wasHard=true
                      2003-06-03 15:07:00,551 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire lrucache 43 msg=3 hard NOT_STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 wasHard=true
                      2003-06-03 15:07:00,551 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent locks released 43 msg=3 hard NOT_STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 wasHard=true
                      2003-06-03 15:07:00,551 TRACE [org.jboss.mq.server.MessageReference] getMessage lock released 43 msg=3 hard NOT_STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909
                      2003-06-03 15:07:00,551 TRACE [org.jboss.mq.pm.jdbc2.PersistenceManager] Inserting message 43 msg=3 hard NOT_STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 transaction=null
                      2003-06-03 15:07:00,553 TRACE [org.jboss.mq.pm.jdbc2.PersistenceManager] Added message 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 transaction=null
                      2003-06-03 15:07:00,553 TRACE [org.jboss.resource.connectionmanager.TxConnectionManager$TxConnectionEventListener] connectionClosed called
                      2003-06-03 15:07:00,553 TRACE [org.jboss.resource.connectionmanager.CachedConnectionManager] unregistering connection from org.jboss.resource.connectionmanager.TxConnectionManager@511a6e, object: org.jboss.resource.adapter.jdbc.WrappedConnection@4a2ec6, key: null
                      2003-06-03 15:07:00,553 TRACE [org.jboss.resource.connectionmanager.TxConnectionManager$TxConnectionEventListener] unregisterConnection: 0 handles left
                      2003-06-03 15:07:00,553 TRACE [org.jboss.tm.TransactionImpl] Committing, tx=TransactionImpl:XidImpl [FormatId=257, GlobalId=biohazard.dev.kiala.com//565, BranchQual=], status=STATUS_ACTIVE
                      2003-06-03 15:07:00,553 TRACE [org.jboss.tm.TransactionImpl] calling sync 0, org.jboss.resource.connectionmanager.TxConnectionManager$TxConnectionEventListener$TxRemover@1724f31
                      2003-06-03 15:07:00,553 TRACE [org.jboss.tm.TransactionImpl] Before completion done, tx=TransactionImpl:XidImpl [FormatId=257, GlobalId=biohazard.dev.kiala.com//565, BranchQual=], status=STATUS_ACTIVE
                      2003-06-03 15:07:00,553 TRACE [org.jboss.tm.TransactionImpl] endresources(0): state=1
                      2003-06-03 15:07:00,553 TRACE [org.jboss.tm.TransactionImpl] endResource(XidImpl [FormatId=257, GlobalId=biohazard.dev.kiala.com//565, BranchQual=1]) entered: org.jboss.resource.connectionmanager.TxConnectionManager$LocalXAResource@1c30dfa flag=67108864
                      2003-06-03 15:07:00,553 TRACE [org.jboss.resource.connectionmanager.TxConnectionManager$LocalXAResource] end on xid: XidImpl [FormatId=257, GlobalId=biohazard.dev.kiala.com//565, BranchQual=1] called with flags 67108864
                      2003-06-03 15:07:00,553 TRACE [org.jboss.tm.TransactionImpl] endResource(XidImpl [FormatId=257, GlobalId=biohazard.dev.kiala.com//565, BranchQual=1]) leaving: org.jboss.resource.connectionmanager.TxConnectionManager$LocalXAResource@1c30dfa flag=67108864
                      2003-06-03 15:07:00,553 TRACE [org.jboss.tm.TransactionImpl] One phase commit: One resource.
                      2003-06-03 15:07:00,553 TRACE [org.jboss.tm.TransactionImpl] Committing resources, resourceStates[0]=3
                      2003-06-03 15:07:00,560 TRACE [org.jboss.resource.connectionmanager.JBossManagedConnectionPool] putting ManagedConnection back into pool
                      2003-06-03 15:07:00,562 TRACE [org.jboss.tm.TransactionImpl] Committed OK, tx=TransactionImpl:XidImpl [FormatId=257, GlobalId=biohazard.dev.kiala.com//565, BranchQual=]
                      2003-06-03 15:07:00,562 TRACE [org.jboss.mq.server.MessageReference] getMessage lock aquire 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909
                      2003-06-03 15:07:00,562 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire message 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 wasHard=true
                      2003-06-03 15:07:00,562 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire lrucache 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 wasHard=true
                      2003-06-03 15:07:00,563 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent locks released 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 wasHard=true
                      2003-06-03 15:07:00,563 TRACE [org.jboss.mq.server.MessageReference] getMessage lock released 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909
                      2003-06-03 15:07:00,563 TRACE [org.jboss.mq.server.MessageReference] getMessage lock aquire 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909
                      2003-06-03 15:07:00,563 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire message 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 wasHard=true
                      2003-06-03 15:07:00,563 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire lrucache 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 wasHard=true
                      2003-06-03 15:07:00,563 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent locks released 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 wasHard=true
                      2003-06-03 15:07:00,563 TRACE [org.jboss.mq.server.MessageReference] getMessage lock released 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909
                      2003-06-03 15:07:00,563 TRACE [org.jboss.mq.server.MessageReference] getMessage lock aquire 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909
                      2003-06-03 15:07:00,563 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire message 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 wasHard=true
                      2003-06-03 15:07:00,563 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire lrucache 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 wasHard=true
                      2003-06-03 15:07:00,563 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent locks released 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 wasHard=true
                      2003-06-03 15:07:00,563 TRACE [org.jboss.mq.server.MessageReference] getMessage lock released 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909
                      2003-06-03 15:07:00,563 TRACE [org.jboss.mq.server.MessageReference] getMessage lock aquire 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909
                      2003-06-03 15:07:00,563 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire message 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 wasHard=true
                      2003-06-03 15:07:00,563 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire lrucache 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 wasHard=true
                      2003-06-03 15:07:00,563 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent locks released 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 wasHard=true
                      2003-06-03 15:07:00,563 TRACE [org.jboss.mq.server.MessageReference] getMessage lock released 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909
                      2003-06-03 15:07:00,563 TRACE [org.jboss.mq.server.MessageReference] getMessage lock aquire 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909
                      2003-06-03 15:07:00,563 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire message 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 wasHard=true
                      2003-06-03 15:07:00,563 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire lrucache 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 wasHard=true
                      2003-06-03 15:07:00,563 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent locks released 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909 wasHard=true
                      2003-06-03 15:07:00,563 TRACE [org.jboss.mq.server.MessageReference] getMessage lock released 43 msg=3 hard STORED PERSISTENT queue=QUEUE.kp/v0.0.1/parcelInstruction priority=4 hashCode=18802909
                      2003-06-03 15:07:00,564 TRACE [org.jboss.mq.SpyConnectionConsumer] SpyConnectionConsumer:QUEUE.kp/v0.0.1/parcelInstruction->addMessage(mes=org.jboss.mq.SpyTextMessage {
                      Header {
                      jmsDestination : QUEUE.kp/v0.0.1/parcelInstruction
                      jmsDeliveryMode : 2
                      jmsExpiration : 0
                      jmsPriority : 4
                      jmsMessageID : ID:47-10546456205481
                      jmsTimeStamp : 1054645620548
                      jmsCorrelationID: null
                      jmsReplyTo : null
                      jmsType : null
                      jmsRedelivered : false
                      jmsPropertiesReadWrite:false
                      msgReadOnly : true
                      producerClientId: ID:47
                      }
                      Body {
                      text :<?xml version="1.0" encoding="UTF-8"?>
                      <!DOCTYPE create-parcel PUBLIC "-//Kiala SA//DTD Create Parcel 0.0.1//EN" "http://dtd.kiala.com/create-parcel_0_0_1.dtd">
                      <create-parcel>




                      <dsp-parcel-id>LOAD1</dsp-parcel-id>
                      BARLOAD1


                      Customer 1

                      <cod-amount currency="EUR">11.11</cod-amount>
                      <expected-delivery-date>2003-05-16 10:00:00</expected-delivery-date>
                      <process-id>1</process-id>

                      </create-parcel>

                      }
                      })
                      2003-06-03 15:07:00,564 TRACE [org.jboss.jms.asf.StdServerSessionPool] getting a server session
                      2003-06-03 15:07:00,564 TRACE [org.jboss.jms.asf.StdServerSessionPool] using server session: org.jboss.jms.asf.StdServerSession@2bc184
                      2003-06-03 15:07:00,564 TRACE [org.jboss.jms.asf.StdServerSession] starting invokes on server session
                      2003-06-03 15:07:00,564 TRACE [org.jboss.mq.server.TracingInterceptor] CALLED : receive
                      2003-06-03 15:07:00,564 TRACE [org.jboss.mq.server.TracingInterceptor] ARG : -2147483648
                      2003-06-03 15:07:00,564 TRACE [org.jboss.mq.server.TracingInterceptor] ARG : -1
                      2003-06-03 15:07:00,564 TRACE [org.jboss.mq.security.ServerSecurityInterceptor] Checking receive authorize on SpyDistributedConnection:ID:13/45910380be4bcd0ac8da0559be130b97 subId=-2147483648
                      2003-06-03 15:07:00,564 TRACE [org.jboss.mq.security.SecurityManager] Checking authorize on subjectInfo: SubjectInfo {subject=Subject:
                      Principal: Roles(members:guest)
                      ;principal=null;roles=Roles(members:guest) for rolePrincipals [guest]
                      2003-06-03 15:07:00,564 TRACE [org.jboss.jms.asf.StdServerSession] running...
                      2003-06-03 15:07:00,564 TRACE [org.jboss.mq.SpyXAResourceManager] Starting tx with new xid=-9223372036854775805
                      2003-06-03 15:07:00,564 TRACE [org.jboss.mq.SpySession] setting current tx id: -9223372036854775805, previous: null
                      2003-06-03 15:07:00,564 TRACE [org.jboss.mq.SpyXAResourceManager] Ack'ing message xid=-9223372036854775805
                      2003-06-03 15:07:00,564 TRACE [org.jboss.jms.asf.StdServerSession] onMessage running (pool, session, xaSession, useLocalTX): , org.jboss.mq.SpyTopicSession@a2bd15, org.jboss.mq.SpyTopicSession@a2bd15, true
                      2003-06-03 15:07:00,565 TRACE [org.jboss.mq.SpyXAResource] Start xid=XidImpl [FormatId=257, GlobalId=biohazard.dev.kiala.com//567, BranchQual=], flags=0
                      2003-06-03 15:07:00,565 TRACE [org.jboss.mq.SpyXAResourceManager] Converting tx anonXid=-9223372036854775805, xid=XidImpl [FormatId=257, GlobalId=biohazard.dev.kiala.com//567, BranchQual=]
                      2003-06-03 15:07:00,565 TRACE [org.jboss.mq.SpySession] setting current tx id: XidImpl [FormatId=257, GlobalId=biohazard.dev.kiala.com//567, BranchQual=], previous: -9223372036854775805
                      2003-06-03 15:07:00,565 TRACE [org.jboss.jms.asf.StdServerSession] Using optimized 1p commit to control TX.
                      2003-06-03 15:07:00,565 TRACE [org.jboss.ejb.plugins.jms.JMSContainerInvoker] processing message: org.jboss.mq.SpyTextMessage {
                      Header {
                      jmsDestination : QUEUE.kp/v0.0.1/parcelInstruction
                      jmsDeliveryMode : 2
                      jmsExpiration : 0
                      jmsPriority : 4
                      jmsMessageID : ID:47-10546456205481
                      jmsTimeStamp : 1054645620548
                      jmsCorrelationID: null
                      jmsReplyTo : null
                      jmsType : null
                      jmsRedelivered : false
                      jmsPropertiesReadWrite:false
                      msgReadOnly : true
                      producerClientId: ID:47
                      }
                      Body {
                      text :<?xml version="1.0" encoding="UTF-8"?>
                      <!DOCTYPE create-parcel PUBLIC "-//Kiala SA//DTD Create Parcel 0.0.1//EN" "http://dtd.kiala.com/create-parcel_0_0_1.dtd">
                      <create-parcel>




                      <dsp-parcel-id>LOAD1</dsp-parcel-id>
                      BARLOAD1


                      Customer 1

                      <cod-amount currency="EUR">11.11</cod-amount>
                      <expected-delivery-date>2003-05-16 10:00:00</expected-delivery-date>
                      <process-id>1</process-id>

                      </create-parcel>

                      }
                      }
                      2003-06-03 15:07:00,565 TRACE [org.jboss.util.TCLStack] Setting TCL to java.net.URLClassLoader@fe135d; pushing java.net.URLClassLoader@fe135d
                      2003-06-03 15:07:00,565 TRACE [org.jboss.util.TCLStack] Stack: [java.net.URLClassLoader@fe135d]
                      2003-06-03 15:07:00,565 TRACE [org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor] invokerBInding is null in ProxyFactoryFinder
                      2003-06-03 15:07:00,565 TRACE [org.jboss.ejb.plugins.LogInterceptor] Start method=onMessage
                      2003-06-03 15:07:00,565 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] Current transaction in MI is null
                      2003-06-03 15:07:00,565 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] TX_NOT_SUPPORTED for onMessage
                      2003-06-03 15:07:00,565 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] Thread came in with tx null
                      2003-06-03 15:07:00,565 TRACE [org.jboss.ejb.plugins.MessageDrivenInstancePool] Get instance org.jboss.ejb.plugins.MessageDrivenInstancePool@1c047f0#1#class com.kiala.kialapointserver.jms.ParcelCreatorMessageBean
                      2003-06-03 15:07:00,565 TRACE [org.jboss.ejb.plugins.MessageDrivenInstancePool] Acquired(true) strictMaxSize semaphore, remaining=0
                      2003-06-03 15:07:00,565 TRACE [org.jboss.resource.connectionmanager.CachedConnectionManager] new stack for key: com.kiala.kialapointserver.jms.ParcelCreatorMessageBean@b2e9be
                      2003-06-03 15:07:00,566 TRACE [org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor] invokerBInding is null in ProxyFactoryFinder
                      2003-06-03 15:07:00,566 TRACE [org.jboss.ejb.plugins.LogInterceptor] Start method=create
                      2003-06-03 15:07:00,566 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] Current transaction in MI is null
                      2003-06-03 15:07:00,566 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] TX_SUPPORTS for create
                      2003-06-03 15:07:00,566 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] Thread came in with tx null
                      2003-06-03 15:07:00,566 TRACE [org.jboss.ejb.plugins.LogInterceptor] End method=create
                      2003-06-03 15:07:00,566 TRACE [org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor] invokerBInding is null in ProxyFactoryFinder
                      2003-06-03 15:07:00,566 TRACE [org.jboss.ejb.plugins.LogInterceptor] Start method=debug
                      2003-06-03 15:07:00,566 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] Current transaction in MI is null
                      2003-06-03 15:07:00,566 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] TX_SUPPORTS for debug
                      2003-06-03 15:07:00,566 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] Thread came in with tx null
                      2003-06-03 15:07:00,566 TRACE [org.jboss.ejb.plugins.StatelessSessionInstancePool] Get instance org.jboss.ejb.plugins.StatelessSessionInstancePool@1f6b81c#1#class com.kiala.debugging.LogWriterSession
                      2003-06-03 15:07:00,566 TRACE [org.jboss.resource.connectionmanager.CachedConnectionManager] old stack for key: com.kiala.debugging.LogWriterSession@b1656f
                      2003-06-03 15:07:00,566 TRACE [org.jboss.mq.Connection] Connection Initializing
                      2003-06-03 15:07:00,566 TRACE [org.jboss.mq.Connection] Getting the serverIL
                      2003-06-03 15:07:00,566 TRACE [org.jboss.mq.Connection] serverIL=org.jboss.mq.il.jvm.JVMServerIL@7a6c34
                      2003-06-03 15:07:00,566 TRACE [org.jboss.mq.Connection] Authenticating
                      2003-06-03 15:07:00,566 TRACE [org.jboss.mq.Connection] Authenticating user null
                      2003-06-03 15:07:00,566 TRACE [org.jboss.mq.server.TracingInterceptor] CALLED : authenticate
                      2003-06-03 15:07:00,566 TRACE [org.jboss.mq.security.ServerSecurityInterceptor] Autenticating user null/null
                      2003-06-03 15:07:00,566 TRACE [org.jboss.security.plugins.JaasSecurityManager.jbossmq] validateCache, info=org.jboss.security.plugins.JaasSecurityManager$DomainInfo@155e0bc
                      2003-06-03 15:07:00,566 TRACE [org.jboss.mq.security.SecurityManager] Username: null is authenticated
                      2003-06-03 15:07:00,567 TRACE [org.jboss.mq.security.SecurityManager] Adding group : class org.jboss.security.NestableGroup Roles(members:guest)
                      2003-06-03 15:07:00,567 TRACE [org.jboss.mq.server.TracingInterceptor] RETURN : authenticate
                      2003-06-03 15:07:00,567 TRACE [org.jboss.mq.Connection] Starting the clientIL service
                      2003-06-03 15:07:00,567 DEBUG [org.jboss.mq.GenericConnectionFactory] Handing out ClientIL: org.jboss.mq.il.jvm.JVMClientILService
                      2003-06-03 15:07:00,567 TRACE [org.jboss.mq.Connection] Connection establishment successful
                      2003-06-03 15:07:00,567 TRACE [org.jboss.mq.Connection] Checking clientID :null
                      2003-06-03 15:07:00,567 TRACE [org.jboss.mq.server.TracingInterceptor] CALLED : getID
                      2003-06-03 15:07:00,567 TRACE [org.jboss.mq.server.TracingInterceptor] RETURN : getID
                      2003-06-03 15:07:00,567 TRACE [org.jboss.mq.Connection] Connection establishment successful
                      2003-06-03 15:07:00,567 TRACE [org.jboss.mq.server.TracingInterceptor] CALLED : addMessage
                      2003-06-03 15:07:00,567 TRACE [org.jboss.mq.server.TracingInterceptor] ARG : org.jboss.mq.SpyTextMessage {
                      Header {
                      jmsDestination : TOPIC.debugTopic
                      jmsDeliveryMode : 1
                      jmsExpiration : 0
                      jmsPriority : 2
                      jmsMessageID : ID:48-10546456205671
                      jmsTimeStamp : 1054645620567
                      jmsCorrelationID: null
                      jmsReplyTo : null
                      jmsType : null
                      jmsRedelivered : false
                      jmsPropertiesReadWrite:true
                      msgReadOnly : false
                      producerClientId: ID:48
                      }
                      Body {
                      text :<?xml version="1.0" encoding="UTF-8"?>
                      <!DOCTYPE create-parcel PUBLIC "-//Kiala SA//DTD Create Parcel 0.0.1//EN" "http://dtd.kiala.com/create-parcel_0_0_1.dtd">
                      <create-parcel>




                      <dsp-parcel-id>LOAD1</dsp-parcel-id>
                      BARLOAD1


                      Customer 1

                      <cod-amount currency="EUR">11.11</cod-amount>
                      <expected-delivery-date>2003-05-16 10:00:00</expected-delivery-date>
                      <process-id>1</process-id>

                      </create-parcel>

                      }
                      }
                      2003-06-03 15:07:00,567 TRACE [org.jboss.mq.security.SecurityManager] Checking authorize on subjectInfo: SubjectInfo {subject=Subject:
                      Principal: guest
                      Principal: Roles(members:guest)
                      ;principal=null;roles=Roles(members:guest) for rolePrincipals [guest]
                      2003-06-03 15:07:00,567 TRACE [org.jboss.mq.server.MessageCache] counter lock aquire 44
                      2003-06-03 15:07:00,567 TRACE [org.jboss.mq.server.MessageCache] counter lock release 44
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] add lock aquire message 44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] add lock aquire lruCache 44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] add locks release44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] run lock aquire, validateSoftReferenceDepth
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] Memory usage serverity=0.3286968
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] run lock release, validateSoftReferenceDepth
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageReference] getMessage lock aquire 44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire message 44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588 wasHard=true
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire lrucache 44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588 wasHard=true
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent locks released 44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588 wasHard=true
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageReference] getMessage lock released 44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageReference] getMessage lock aquire 44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire message 44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588 wasHard=true
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire lrucache 44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588 wasHard=true
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent locks released 44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588 wasHard=true
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageReference] getMessage lock released 44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageReference] getMessage lock aquire 44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire message 44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588 wasHard=true
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire lrucache 44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588 wasHard=true
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent locks released 44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588 wasHard=true
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageReference] getMessage lock released 44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] counter lock aquire 45
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] counter lock release 45
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] add lock aquire message 45 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:1.-2147483648 priority=2 hashCode=12150765
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] add lock aquire lruCache 45 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:1.-2147483648 priority=2 hashCode=12150765
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] add locks release45 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:1.-2147483648 priority=2 hashCode=12150765
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] run lock aquire, validateSoftReferenceDepth
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] Memory usage serverity=0.33284178
                      2003-06-03 15:07:00,568 TRACE [org.jboss.mq.server.MessageCache] run lock release, validateSoftReferenceDepth
                      2003-06-03 15:07:00,569 TRACE [org.jboss.mq.server.MessageReference] getMessage lock aquire 45 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:1.-2147483648 priority=2 hashCode=12150765
                      2003-06-03 15:07:00,569 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire message 45 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:1.-2147483648 priority=2 hashCode=12150765 wasHard=true
                      2003-06-03 15:07:00,569 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire lrucache 45 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:1.-2147483648 priority=2 hashCode=12150765 wasHard=true
                      2003-06-03 15:07:00,569 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent locks released 45 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:1.-2147483648 priority=2 hashCode=12150765 wasHard=true
                      2003-06-03 15:07:00,569 TRACE [org.jboss.mq.server.MessageReference] getMessage lock released 45 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:1.-2147483648 priority=2 hashCode=12150765
                      2003-06-03 15:07:00,569 TRACE [org.jboss.mq.server.MessageReference] getMessage lock aquire 45 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:1.-2147483648 priority=2 hashCode=12150765
                      2003-06-03 15:07:00,569 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire message 45 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:1.-2147483648 priority=2 hashCode=12150765 wasHard=true
                      2003-06-03 15:07:00,569 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire lrucache 45 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:1.-2147483648 priority=2 hashCode=12150765 wasHard=true
                      2003-06-03 15:07:00,569 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent locks released 45 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:1.-2147483648 priority=2 hashCode=12150765 wasHard=true
                      2003-06-03 15:07:00,569 TRACE [org.jboss.mq.server.MessageReference] getMessage lock released 45 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:1.-2147483648 priority=2 hashCode=12150765
                      2003-06-03 15:07:00,569 TRACE [org.jboss.mq.server.MessageReference] getMessage lock aquire 45 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:1.-2147483648 priority=2 hashCode=12150765
                      2003-06-03 15:07:00,569 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire message 45 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:1.-2147483648 priority=2 hashCode=12150765 wasHard=true
                      2003-06-03 15:07:00,569 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire lrucache 45 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:1.-2147483648 priority=2 hashCode=12150765 wasHard=true
                      2003-06-03 15:07:00,569 TRACE [org.jboss.mq.server.MessageReference] getMessage lock aquire 44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588
                      2003-06-03 15:07:00,571 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire message 44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588 wasHard=true
                      2003-06-03 15:07:00,571 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent lock aquire lrucache 44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588 wasHard=true
                      2003-06-03 15:07:00,571 TRACE [org.jboss.mq.server.MessageCache] messageReferenceUsedEvent locks released 44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588 wasHard=true
                      2003-06-03 15:07:00,571 TRACE [org.jboss.mq.server.MessageReference] getMessage lock released 44 msg=15 hard NOT_STORED NON_PERSISTENT queue=TOPIC.debugTopic.ID:3.-2147483648 priority=2 hashCode=27114588
                      2003-06-03 15:07:00,571 TRACE [org.jboss.mq.SpyConnectionConsumer] SpyConnectionConsumer:TOPIC.debugTopic->addMessage(mes=org.jboss.mq.SpyTextMessage {
                      Header {
                      jmsDestination : TOPIC.debugTopic
                      jmsDeliveryMode : 1
                      jmsExpiration : 0
                      jmsPriority : 2
                      jmsMessageID : ID:48-10546456205671
                      jmsTimeStamp : 1054645620567
                      jmsCorrelationID: null
                      jmsReplyTo : null
                      jmsType : null
                      jmsRedelivered : false
                      jmsPropertiesReadWrite:false
                      msgReadOnly : true
                      producerClientId: ID:48
                      }
                      Body {
                      text :<?xml version="1.0" encoding="UTF-8"?>
                      <!DOCTYPE create-parcel PUBLIC "-//Kiala SA//DTD Create Parcel 0.0.1//EN" "http://dtd.kiala.com/create-parcel_0_0_1.dtd">
                      <create-parcel>




                      <dsp-parcel-id>LOAD1</dsp-parcel-id>
                      BARLOAD1


                      Customer 1

                      <cod-amount currency="EUR">11.11</cod-amount>
                      <expected-delivery-date>2003-05-16 10:00:00</expected-delivery-date>
                      <process-id>1</process-id>

                      </create-parcel>

                      }
                      })
                      2003-06-03 15:07:00,570 TRACE [org.jboss.mq.server.TracingInterceptor] RETURN : receive
                      2003-06-03 15:07:00,571 TRACE [org.jboss.mq.server.TracingInterceptor] CALLED : receive
                      2003-06-03 15:07:00,571 TRACE [org.jboss.mq.server.TracingInterceptor] ARG : -2147483648
                      2003-06-03 15:07:00,571 TRACE [org.jboss.mq.server.TracingInterceptor] ARG : 0
                      2003-06-03 15:07:00,571 TRACE [org.jboss.mq.security.ServerSecurityInterceptor] Checking receive authorize on SpyDistributedConnection:ID:13/45910380be4bcd0ac8da0559be130b97 subId=-2147483648
                      2003-06-03 15:07:00,571 TRACE [org.jboss.mq.security.SecurityManager] Checking authorize on subjectInfo: SubjectInfo {subject=Subject:
                      Principal: Roles(members:guest)
                      ;principal=null;roles=Roles(members:guest) for rolePrincipals [guest]
                      2003-06-03 15:07:00,571 TRACE [org.jboss.mq.server.TracingInterceptor] RETURN : receive
                      2003-06-03 15:07:00,571 TRACE [org.jboss.jms.asf.StdServerSessionPool] getting a server session
                      2003-06-03 15:07:00,571 TRACE [org.jboss.jms.asf.StdServerSessionPool] using server session: org.jboss.jms.asf.StdServerSession@26d560
                      2003-06-03 15:07:00,571 TRACE [org.jboss.jms.asf.StdServerSession] starting invokes on server session
                      2003-06-03 15:07:00,571 TRACE [org.jboss.mq.server.TracingInterceptor] CALLED : receive
                      2003-06-03 15:07:00,572 TRACE [org.jboss.mq.server.TracingInterceptor] ARG : -2147483648
                      2003-06-03 15:07:00,572 TRACE [org.jboss.mq.server.TracingInterceptor] ARG : -1
                      2003-06-03 15:07:00,572 TRACE [org.jboss.mq.security.ServerSecurityInterceptor] Checking receive authorize on SpyDistributedConnection:ID:3/ff634b50cbe946917e2909ddd7f005aa subId=-2147483648
                      2003-06-03 15:07:00,572 TRACE [org.jboss.mq.security.SecurityManager] Checking authorize on subjectInfo: SubjectInfo {subject=Subject:
                      Principal: Roles(members:guest)
                      ;principal=null;roles=Roles(members:guest) for rolePrincipals [guest]
                      2003-06-03 15:07:00,572 TRACE [org.jboss.jms.asf.StdServerSession] running...
                      2003-06-03 15:07:00,572 TRACE [org.jboss.mq.SpyXAResourceManager] Starting tx with new xid=-9223372036854775793
                      2003-06-03 15:07:00,572 TRACE [org.jboss.mq.SpySession] setting current tx id: -9223372036854775793, previous: null
                      2003-06-03 15:07:00,572 TRACE [org.jboss.mq.SpyXAResourceManager] Ack'ing message xid=-9223372036854775793
                      2003-06-03 15:07:00,572 TRACE [org.jboss.jms.asf.StdServerSession] onMessage running (pool, session, xaSession, useLocalTX): , org.jboss.mq.SpyTopicSession@8bfdea, org.jboss.mq.SpyTopicSession@8bfdea, true
                      2003-06-03 15:07:00,572 TRACE [org.jboss.mq.SpyXAResource] Start xid=XidImpl [FormatId=257, GlobalId=biohazard.dev.kiala.com//569, BranchQual=], flags=0
                      2003-06-03 15:07:00,572 TRACE [org.jboss.mq.SpyXAResourceManager] Converting tx anonXid=-9223372036854775793, xid=XidImpl [FormatId=257, GlobalId=biohazard.dev.kiala.com//569, BranchQual=]
                      2003-06-03 15:07:00,572 TRACE [org.jboss.mq.SpySession] setting current tx id: XidImpl [FormatId=257, GlobalId=biohazard.dev.kiala.com//569, BranchQual=], previous: -9223372036854775793
                      2003-06-03 15:07:00,572 TRACE [org.jboss.jms.asf.StdServerSession] Using optimized 1p commit to control TX.
                      2003-06-03 15:07:00,572 TRACE [org.jboss.ejb.plugins.jms.JMSContainerInvoker] processing message: org.jboss.mq.SpyTextMessage {
                      Header {
                      jmsDestination : TOPIC.debugTopic
                      jmsDeliveryMode : 1
                      jmsExpiration : 0
                      jmsPriority : 2
                      jmsMessageID : ID:48-10546456205671
                      jmsTimeStamp : 1054645620567
                      jmsCorrelationID: null
                      jmsReplyTo : null
                      jmsType : null
                      jmsRedelivered : false
                      jmsPropertiesReadWrite:false
                      msgReadOnly : true
                      producerClientId: ID:48
                      }
                      Body {
                      text :<?xml version="1.0" encoding="UTF-8"?>
                      <!DOCTYPE create-parcel PUBLIC "-//Kiala SA//DTD Create Parcel 0.0.1//EN" "http://dtd.kiala.com/create-parcel_0_0_1.dtd">
                      <create-parcel>




                      <dsp-parcel-id>LOAD1</dsp-parcel-id>
                      BARLOAD1


                      Customer 1

                      <cod-amount currency="EUR">11.11</cod-amount>
                      <expected-delivery-date>2003-05-16 10:00:00</expected-delivery-date>
                      <process-id>1</process-id>

                      </create-parcel>

                      }
                      }
                      2003-06-03 15:07:00,572 TRACE [org.jboss.util.TCLStack] Setting TCL to java.net.URLClassLoader@725967; pushing java.net.URLClassLoader@725967
                      2003-06-03 15:07:00,572 TRACE [org.jboss.util.TCLStack] Stack: [java.net.URLClassLoader@725967]
                      2003-06-03 15:07:00,572 TRACE [org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor] invokerBInding is null in ProxyFactoryFinder
                      2003-06-03 15:07:00,572 TRACE [org.jboss.ejb.plugins.LogInterceptor] Start method=onMessage
                      2003-06-03 15:07:00,572 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] Current transaction in MI is null
                      2003-06-03 15:07:00,572 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] TX_NOT_SUPPORTED for onMessage
                      2003-06-03 15:07:00,572 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] Thread came in with tx null
                      2003-06-03 15:07:00,573 TRACE [org.jboss.ejb.plugins.MessageDrivenInstancePool] Get instance org.jboss.ejb.plugins.MessageDrivenInstancePool@1da8fc#1#class com.kiala.debugging.Debug2LogfileMessageBean
                      2003-06-03 15:07:00,573 TRACE [org.jboss.resource.connectionmanager.CachedConnectionManager] new stack for key: com.kiala.debugging.Debug2LogfileMessageBean@14174f9
                      2003-06-03 15:07:00,578 TRACE [org.jboss.resource.connectionmanager.CachedConnectionManager] popped object: org.jboss.resource.connectionmanager.CachedConnectionManager$KeyConnectionAssociation@14174f9
                      2003-06-03 15:07:00,578 TRACE [org.jboss.ejb.plugins.MessageDrivenInstancePool] 0/100 Free instance:org.jboss.ejb.plugins.MessageDrivenInstancePool@1da8fc#null#null#true#class com.kiala.debugging.Debug2LogfileMessageBean
                      2003-06-03 15:07:00,578 TRACE [org.jboss.ejb.plugins.LogInterceptor] End method=onMessage

                      • 8. Re: JMS mapping to postgres generates WARNING

                        I don't see a problem with JBossMQ outside
                        a transaction, but I do see your MDB
                        configured with "not supported"

                        Regards,
                        Adrian

                        • 9. Re: JMS mapping to postgres generates WARNING

                          That's the problem

                          Here is the definition of my MDB

                          <container-transaction >

                          <ejb-name>ejb/kp/v0.0.1/ParcelCreator</ejb-name>
                          <method-name>*</method-name>

                          <trans-attribute>RequiresNew</trans-attribute>
                          </container-transaction>
                          <container-transaction >


                          in ejb-jar

                          so I don't understand why it's not in a TX context !!

                          • 10. Re: JMS mapping to postgres generates WARNING

                            MDBs can only be Required or NotSupported
                            read the spec.

                            Regards,
                            Adrian

                            • 11. Re: JMS mapping to postgres generates WARNING

                              Thanks a lot Adrian, your help is very usefull!