RE: [JBoss-user] How to configure compatible DataSource JNDI for WebLogic and JBoss

2001-04-13 Thread Tim Taylor
-Original Message- From: Nguyen Thanh Phong [mailto:[EMAIL PROTECTED]] Sent: Friday, April 13, 2001 1:30 AM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] How to configure compatible DataSource JNDI for WebLogic and JBoss > What JNDI you use when you create DataSource for WL? j

Re: [JBoss-user] How to configure compatible DataSource JNDI for WebLogic and JBoss

2001-04-12 Thread Nguyen Thanh Phong
tainer? Do you means that if I access it from (say) JSP/Servlet? > > -Original Message- > From: Swarr, Bob [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 12, 2001 8:46 AM > To: '[EMAIL PROTECTED]' > Subject: RE: [JBoss-user] How to configure compatible DataS

RE: [JBoss-user] How to configure compatible DataSource JNDI for WebLogic and JBoss

2001-04-12 Thread Nguyen Thanh Phong
Bob, Thanks for suggestion but that is not exactly what I wanted to do. Currently, what I have in my ejb-jar.xml contains the following entry smart/DSJndi java.lang.String SmartPool In my code, private void lookupEnv() { Context

Re: [JBoss-user] How to configure compatible DataSource JNDI for WebLogic and JBoss

2001-04-12 Thread Toby Allsopp
Swarr, Bob wrote: > I'm testing some EJBs in both WebLogic and JBoss and worked around this > problem by putting a serverVendor variable into the deployment descriptor. > Here's how to do it: Please, everyone, read the EJB spec, section 19.4. Code your EJB implementation to use "java:comp/env/j

RE: [JBoss-user] How to configure compatible DataSource JNDI for WebLogic and JBoss

2001-04-12 Thread Tim Taylor
jdbc/OraclePool bean -Original Message- From: Swarr, Bob [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 12, 2001 8:46 AM To: '[EMAIL PROTECTED]' Subject: RE: [JBoss-user] How to configure compatible DataSource JNDI for WebLogic and JBoss I'

RE: [JBoss-user] How to configure compatible DataSource JNDI for WebLogic and JBoss

2001-04-12 Thread Swarr, Bob
eks. But it looks to me like JBoss wins on dynamic deployment, performance and scalability. Bob Swarr -Original Message- From: danch [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 12, 2001 9:02 AM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] How to configure compatible DataSource JNDI for W

Re: [JBoss-user] How to configure compatible DataSource JNDI for WebLogic and JBoss

2001-04-12 Thread danch
Swarr, Bob wrote: > > Voila, you've handled an EJB server difference with the deployment > descriptor (and this is why we have deployment descriptors). You don't have > to recompile the EJB when you run in WebLogic or JBoss. You just need to > redeploy it with a different deployment descriptor

RE: [JBoss-user] How to configure compatible DataSource JNDI for WebLogic and JBoss

2001-04-12 Thread Swarr, Bob
ilto:[EMAIL PROTECTED]] Sent: Wednesday, April 11, 2001 4:40 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] How to configure compatible DataSource JNDI for WebLogic and JBoss One issue though is that you cannot configure a resource without a java: prefix as a Deployer in JBoss right now. I hav

Re: [JBoss-user] How to configure compatible DataSource JNDI for WebLogic and JBoss

2001-04-11 Thread Scott M Stark
, April 11, 2001 12:38 PM Subject: Re: [JBoss-user] How to configure compatible DataSource JNDI for WebLogic and JBoss > On Wed, Apr 11, 2001 at 05:27:28PM +0700, Nguyen Thanh Phong wrote: > > Hi, > > > > I'm recently moving my beans from WebLogic to JBoss. I have so

Re: [JBoss-user] How to configure compatible DataSource JNDI for WebLogic and JBoss

2001-04-11 Thread Toby Allsopp
On Wed, Apr 11, 2001 at 05:27:28PM +0700, Nguyen Thanh Phong wrote: > Hi, > > I'm recently moving my beans from WebLogic to JBoss. I have some problems to > create/configure a compatible DataSource JNDI so that I don't have to modify > my ejb-jar.xml when I deploy my code on WL or JBoss. > > In

[JBoss-user] How to configure compatible DataSource JNDI for WebLogic and JBoss

2001-04-11 Thread Nguyen Thanh Phong
Hi, I'm recently moving my beans from WebLogic to JBoss. I have some problems to create/configure a compatible DataSource JNDI so that I don't have to modify my ejb-jar.xml when I deploy my code on WL or JBoss. In WebLogic, my beans works if I create a DataSource with JNDI name (e.g.) SmartPool.