Re: [JBoss-dev] Problems using UserTransaction

2002-06-04 Thread Ignacio Coloma
27 >To: [EMAIL PROTECTED] >Subject: RE: [JBoss-dev] Problems using UserTransaction > > >This may or may not workgive it a try and tell me if it works. > >Use the TransactionManager directly. > >void someEJBMethod() >{ > InitialContext ctx = new InitialContex

RE: [JBoss-dev] Problems using UserTransaction

2002-06-03 Thread Patrícia Soares Canela
Ok! It works! Thanks a lot :) Patrícia -Original Message- From: Bill Burke [mailto:[EMAIL PROTECTED]] Sent: segunda-feira, 3 de Junho de 2002 19:27 To: [EMAIL PROTECTED] Subject: RE: [JBoss-dev] Problems using UserTransaction This may or may not workgive it a try and tell me if it

RE: [JBoss-dev] Problems using UserTransaction

2002-06-03 Thread Bill Burke
-Original Message- > From: David Jencks [mailto:[EMAIL PROTECTED]] > Sent: segunda-feira, 3 de Junho de 2002 19:04 > To: [EMAIL PROTECTED] > Subject: Re: [JBoss-dev] Problems using UserTransaction > > > You can't use your own threads in ejbs. It's against spe

RE: [JBoss-dev] Problems using UserTransaction

2002-06-03 Thread Patrícia Soares Canela
:04 To: [EMAIL PROTECTED] Subject: Re: [JBoss-dev] Problems using UserTransaction You can't use your own threads in ejbs. It's against spec and doesn't work with transactions, as you have discovered. david jencks On 2002.06.03 13:37:54 -0400 Patrícia Soares Canela wrote: > Hi

Re: [JBoss-dev] Problems using UserTransaction

2002-06-03 Thread David Jencks
You can't use your own threads in ejbs. It's against spec and doesn't work with transactions, as you have discovered. david jencks On 2002.06.03 13:37:54 -0400 Patrícia Soares Canela wrote: > Hi there! > > I have this EJB, bean managed wich controls client's request and invokes > other beans.