yes.. typo.  fixed now in CVS.

Regards,
Hiram

>From: Marius Kotsbak <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: Re: [JBoss-dev] Obvious JMS Bug that I need fixed right away. 
>->other possible bug
>Date: 09 Jun 2002 10:01:23 +0200
>
>From login-config.xml for jbossmq:
>
>     <application-policy name = "jbossmq">
>        <authentication>
>
>           <login-module code = "org.jboss.mq.sm.file.DynamicLoginModule"
>              flag = "sufficient">
>              <module-option name =
>"unauthenticatedIdentity">guest</module-option>
>              <module-option name =
>"sm.objectnam">jboss.mq:service=StateManager</module-option
> >
>           </login-module>
>
>
>Is "sm.objectnam" a typing error? Shoudn't it be "sm.objectname" ?
>
>Marius K
>Boostcom
>
>
>On søn, 2002-06-09 at 02:47, Hiram Chirino wrote:
> > Post a patch to sourceforge and I'll bring it into the code base.
> >
> > Regards,
> > Hiram
> >
> >
> > >From: "Joshua D. Cough" <[EMAIL PROTECTED]>
> > >Reply-To: [EMAIL PROTECTED]
> > >To: [EMAIL PROTECTED]
> > >Subject: [JBoss-dev] Obvious JMS Bug that I need fixed right away.
> > >Date: Fri, 7 Jun 2002 12:28:50 -0400
> > >
> > >It is impossible to call recover in SpySession.java
> > >
> > >here is why:
> > >
> > >
> > >    if ( transacted ) {
> > >          throw new IllegalStateException( "The session is transacted" 
>);
> > >       }
> > >    if ( !transacted ) {
> > >             throw new IllegalStateException( "The session is not
> > >transacted"
> > >);
> > >          }
> > >
> > >This obviously doesnt make sense. I need to call recover from a
> > >nontransacted session and have my unacknowledged messages redelivered. 
>Here
> > >is the code that needs to be fixed:
> > >
> > 
> >============================================================================
> > >=====
> > >
> > >   //Rollback a transacted session
> > >    public synchronized void rollback()
> > >       throws JMSException {
> > >
> > >       synchronized ( runLock ) {
> > >
> > >          if ( spyXAResource != null ) {
> > >             throw new javax.jms.TransactionInProgressException( 
>"Should
> > >not
> > >be call from a XASession" );
> > >          }
> > >          if ( closed ) {
> > >             throw new IllegalStateException( "The session is closed" 
>);
> > >          }
> > >          if ( !transacted ) {
> > >             throw new IllegalStateException( "The session is not
> > >transacted"
> > >);
> > >          }
> > >
> > >          // rollback transaction
> > >          try {
> > >             connection.spyXAResourceManager.endTx( 
>currentTransactionId,
> > >true );
> > >             connection.spyXAResourceManager.rollback( 
>currentTransactionId
> > >);
> > >          } catch ( javax.transaction.xa.XAException e ) {
> > >             throw new SpyJMSException( "Could not rollback", e );
> > >          } finally {
> > >             try {
> > >                currentTransactionId =
> > >connection.spyXAResourceManager.startTx();
> > >             } catch ( Exception ignore ) {
> > >             }
> > >          }
> > >
> > >       }
> > >    }
> > >
> > >
> > >    public synchronized void recover()
> > >       throws JMSException {
> > >       if ( closed ) {
> > >          throw new IllegalStateException( "The session is closed" );
> > >       }
> > >       if ( transacted ) {
> > >          throw new IllegalStateException( "The session is transacted" 
>);
> > >       }
> > >
> > >       rollback();
> > >
> > >    }
> > >
> > >
> > >_______________________________________________________________
> > >
> > >Don't miss the 2002 Sprint PCS Application Developer's Conference
> > >August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
> > >
> > >_______________________________________________
> > >Jboss-development mailing list
> > >[EMAIL PROTECTED]
> > >https://lists.sourceforge.net/lists/listinfo/jboss-development
> >
> >
> >
> > _________________________________________________________________
> > Get your FREE download of MSN Explorer at 
>http://explorer.msn.com/intl.asp.
> >
> >
> > _______________________________________________________________
> >
> > Don't miss the 2002 Sprint PCS Application Developer's Conference
> > August 25-28 in Las Vegas - 
>http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink
> >
> > _______________________________________________
> > Jboss-development mailing list
> > [EMAIL PROTECTED]
> > https://lists.sourceforge.net/lists/listinfo/jboss-development
>
>
>
>_______________________________________________________________
>
>Don't miss the 2002 Sprint PCS Application Developer's Conference
>August 25-28 in Las Vegas - 
>http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink
>
>_______________________________________________
>Jboss-development mailing list
>[EMAIL PROTECTED]
>https://lists.sourceforge.net/lists/listinfo/jboss-development




_________________________________________________________________
Join the world’s largest e-mail service with MSN Hotmail. 
http://www.hotmail.com


_______________________________________________________________

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas - 
http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink

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

Reply via email to