Re: Oracle Data Source Config

2003-03-11 Thread Austin Lowry
ing List Subject: Re: Oracle Data Source Config Apparently there is some portion of the Oracle connection that the OracleXMLQuery class needs. To quote Oracle support: "Must use an Oracle connection pool and not the web logic pool. Because the XML API requires an Oracle conn object." My c

RE: Oracle Data Source Config

2003-03-11 Thread Marco Tedone
uires only some configuration on the struts-config.xml file, leaving clean and tidy the web.xml file. My 2 cents. Marco > -Original Message- > From: Austin Lowry [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 11, 2003 5:06 PM > To: Struts Users Mailing List > Subject:

Re: Oracle Data Source Config

2003-03-11 Thread Austin Lowry
I've tried something simillar to this too. JNDI seemed like the best place to reference it to me, since I already had a class to retrieve connections from the Weblogic pool in place. It turned out that while I could place the OracleConnectionPoolDataSource in JNDI, what I need to do is put the

Re: Oracle Data Source Config

2003-03-11 Thread David Graham
This introduces another problem in that I will have to pass the connection to my business objects from my action classes, but I think it will work. Any ideas are welcome. Thanks. You can either put the DataSource in JNDI for your business objects to look up or pass the DataSource into the busine

Re: Oracle Data Source Config

2003-03-11 Thread Robert McIntosh
, you can get a connection from the pool. I've done it with Jboss. -Original Message- From: Austin Lowry [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 4:09 PM To: [EMAIL PROTECTED] Subject: Oracle Data Source Config I've hit a bump in the road with my development because I h

Re: Oracle Data Source Config

2003-03-11 Thread Austin Lowry
Struts? Thanks. Marco Tedone wrote: If Weblogic release a connection pool under a jndi name, you can get a connection from the pool. I've done it with Jboss. -Original Message- From: Austin Lowry [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 4:09 PM To: [EMAIL PROTECTED]

Re: Oracle Data Source Config

2003-03-11 Thread Robert McIntosh
u can get a connection from the pool. I've done it with Jboss. -Original Message- From: Austin Lowry [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 4:09 PM To: [EMAIL PROTECTED] Subject: Oracle Data Source Config I've hit a bump in the road with my development becau

Re: Oracle Data Source Config

2003-03-11 Thread Austin Lowry
ssage- From: Austin Lowry [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 4:09 PM To: [EMAIL PROTECTED] Subject: Oracle Data Source Config I've hit a bump in the road with my development because I have to be able to use an Oracle connection in order to use a class vital to my applica

RE: Oracle Data Source Config

2003-03-10 Thread Marco Tedone
If Weblogic release a connection pool under a jndi name, you can get a connection from the pool. I've done it with Jboss. > -Original Message- > From: Austin Lowry [mailto:[EMAIL PROTECTED] > Sent: Monday, March 10, 2003 4:09 PM > To: [EMAIL PROTECTED] > Subject

Oracle Data Source Config

2003-03-10 Thread Austin Lowry
I've hit a bump in the road with my development because I have to be able to use an Oracle connection in order to use a class vital to my application. This made my Weblogic connection pool unusable because it uses it's own connection objects that use the Oracle driver. I think my best option at