RE: [JBoss-dev] Obvious JMS Bug that I need fixed right away.

2002-06-09 Thread David Maplesden
TECTED] > Subject: RE: [JBoss-dev] Obvious JMS Bug that I need fixed right away. > > > |>It is impossible to call recover in SpySession.java > |> > |>here is why: > |> > |> > |>if ( transacted ) { > |> throw new IllegalState

Re: [JBoss-dev] Obvious JMS Bug that I need fixed right away. ->other possiblebug

2002-06-09 Thread Hiram Chirino
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 +02

RE: [JBoss-dev] Obvious JMS Bug that I need fixed right away.

2002-06-09 Thread marc fleury
|>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

Re: [JBoss-dev] Obvious JMS Bug that I need fixed right away. ->other possible bug

2002-06-09 Thread Marius Kotsbak
ino 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

Re: [JBoss-dev] Obvious JMS Bug that I need fixed right away.

2002-06-08 Thread Hiram Chirino
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

[JBoss-dev] Obvious JMS Bug that I need fixed right away.

2002-06-07 Thread Joshua D. Cough
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 obvi