Re: UserTransaction

2001-06-18 Thread Klaus Thiele
age - > > From: "Jeff Hubbach" <[EMAIL PROTECTED]> > > To: "Orion-Interest" <[EMAIL PROTECTED]> > > Sent: Friday, June 15, 2001 6:05 AM > > Subject: Re: UserTransaction > > > > > Check www.orionserver.com, u

Auto-reply: Re: UserTransaction

2001-06-18 Thread David Rajan
rk. Jeff. Phan Anh Tran wrote: > Yeah, but can I do that from a stand-alone APP running in separate VM? > > Anh > > - Original Message - > From: "Jeff Hubbach" <[EMAIL PROTECTED]> > To: "Orion-Interest" <[EMAIL PROTECTED]> > Se

Re: UserTransaction

2001-06-18 Thread Jeff Hubbach
o reason why it wouldn't work. Jeff. Phan Anh Tran wrote: > Yeah, but can I do that from a stand-alone APP running in separate VM? > > Anh > > - Original Message - > From: "Jeff Hubbach" <[EMAIL PROTECTED]> > To: "Orion-Interest" <

RE: UserTransaction

2001-06-16 Thread Eduardo Estefano
way and do it manually (it still has a lot of bugs). I'm talking about the earassembler.jar -Original Message- From: David- [mailto:[EMAIL PROTECTED]] Sent: Friday, June 15, 2001 9:32 PM To: Orion-Interest Subject:Re: UserTransaction hi guys, i m new to ejb and

Re: UserTransaction

2001-06-16 Thread Paolo Ramasso
hi Devid you have to prepare 3 files: 1) a .jar file containig the ejbs classes and the .xml descriptor (under Meta-inf) 2) a .war file containig your jsps, static files, and the web.xml file (under web-inf) 3) a .ear file containing the ejb .jar file the .war file and the application.xml file (un

Re: UserTransaction

2001-06-15 Thread David-
hi guys, i m new to ejb and want to develop them using the orion server...could someone explain where do i put up my ejbs and my jsps..i mean what im looking for is a directory pattern...I tried alot of combos but...does not seem to work... thanks in advance David

Re: UserTransaction

2001-06-15 Thread Phan Anh Tran
Yeah, but can I do that from a stand-alone APP running in separate VM? Anh - Original Message - From: "Jeff Hubbach" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Friday, June 15, 2001 6:05 AM Subject: Re: UserTransaction > C

Re: UserTransaction

2001-06-15 Thread Jeff Hubbach
Check www.orionserver.com, under the FAQ link: How do I get a reference to the TransactionManager? import javax.naming.*; import javax.transaction.*; ... TransactionManager manager = (TransactionManager)new InitialContext().lookup("java:comp/UserTransaction"); Jeff

RE: UserTransaction.

2000-07-05 Thread Rui Gil
Hi Karl, Well, you really have a way to make us users feel special, don't you... ;) Rui Gil > > Hello Rui, > > Ok, since you want it, we'll implement it. It's put up as a > feature request, so expect it in about a week. >

Re: UserTransaction.

2000-07-05 Thread Karl Avedal
Hello Rui, Ok, since you want it, we'll implement it. It's put up as a feature request, so expect it in about a week. Rui Gil wrote: > Hi Karl, > > Well, you're right, as far as I know the specification doesn't say > that this should be implemented, but it doesn't say the opposite > either... a

RE: UserTransaction.

2000-07-05 Thread Rui Gil
t understand why the implementation is not going to be portable, aren't we talking about standard interfaces here ? Thanks, Rui Gil -Original Message- From: Karl Avedal [mailto:[EMAIL PROTECTED]] Sent: quarta-feira, 5 de Julho de 2000 10:26 To: Rui Gil Cc: Orion-Interest Sub

Re: UserTransaction.

2000-07-05 Thread Karl Avedal
Hello Rui, Currently we do not support getting a UserTransaction reference from an application client (the specification does not say that clients should have access to it). We will probably implement it in a future release, but it will then be Orion specific and not portable to every J2EE server

Re: UserTransaction not found

2000-06-16 Thread Karl Avedal
Hello Klaus, from what kind of module are you doing this? From a Servlet? Something else? Only certain modules have access to the TransactionManager... Regards, Karl Avedal Klaus Thiele wrote: > Hello, > > as described in your FAQ i tried the > (TransactionManager)context.lookup("java:comp/Use

Re: UserTransaction in SessionBean

2000-06-14 Thread Karl Avedal
Hello Klaus, We'll check this out, it does seem weird, Regards, Karl Avedal Klaus Thiele wrote: > Hello, > > i have a SessionBean: > >public class PersonBean implements SessionBean { > private UserTransaction ut = null; > private SessionContext ctx; > [...] >public vo