User: chirino 
  Date: 01/09/19 22:22:19

  Added:       src/main/org/jboss/test/mdb/bean BMPBean.java
  Log:
  Added a test case for BMP MDBs.  It is used to test that bean does not
  get Transaction Timeout errors.  To exercise the test, make sure you
  set you Transaction Timeout value to something under 10 seconds.
  
  Revision  Changes    Path
  1.1                  jbosstest/src/main/org/jboss/test/mdb/bean/BMPBean.java
  
  Index: BMPBean.java
  ===================================================================
  /*
   * Copyright (c) 2000 Peter Antman DN <[EMAIL PROTECTED]>
   *
   * This library is free software; you can redistribute it and/or
   * modify it under the terms of the GNU Lesser General Public
   * License as published by the Free Software Foundation; either
   * version 2 of the License, or (at your option) any later version
   * 
   * This library is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   * Lesser General Public License for more details.
   * 
   * You should have received a copy of the GNU Lesser General Public
   * License along with this library; if not, write to the Free Software
   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   */
  package org.jboss.test.mdb.bean;
  
  import javax.ejb.MessageDrivenBean;
  import javax.ejb.MessageDrivenContext;
  import javax.ejb.EJBException;
  
  import javax.jms.MessageListener;
  import javax.jms.Message;
  import javax.naming.InitialContext;
  import javax.transaction.Status;
  import javax.transaction.Transaction;
  import javax.transaction.TransactionManager;
  import javax.transaction.xa.XAResource;
  
  /**
   * MessageBeanImpl.java
   *
   *
   * Created: Sat Nov 25 18:07:50 2000
   *
   * @author 
   * @version
   */
  
  public class BMPBean implements MessageDrivenBean, MessageListener{
      private MessageDrivenContext ctx = null;
      public BMPBean() {
        
      }
      public void setMessageDrivenContext(MessageDrivenContext ctx)
        throws EJBException {
        this.ctx = ctx;
      }
      
      public void ejbCreate() {}
  
      public void ejbRemove() {ctx=null;}
  
      public void onMessage(Message message) {
  
                System.err.println("DEBUG: BMPBean got message" + message.toString() );
                try {
                  TransactionManager tm = (TransactionManager)new 
InitialContext().lookup("java:/TransactionManager");
              Transaction threadTx = tm.suspend();
                        System.out.println("DEBUG Tx="+threadTx);
  
        System.out.println("Sleeping for 10 seconds");
        try { Thread.currentThread().sleep(1000*10);
        } catch ( InterruptedException e ) {}
        System.out.println("Sleep done");
  
                        if( threadTx != null )
                        tm.resume(threadTx);
                } catch (Exception e) {
                  System.out.println("BMPBean Error:"+e);
                }
      }
  } 
  
  
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to