RE: ATM example and Oracle

2001-05-29 Thread Mustafa Cayci

Doug,  

Thanks that worked.

Mustafa
--- Doug Pham <[EMAIL PROTECTED]> wrote:
> Mustafa,
> 
> Here is one that I am using.  Make sure your jdbc
> drivers are in the Orion's
> library directory.
> 
>  
> class="com.evermind.sql.DriverManagerDataSource"
>   name="Oracle"
>   schema="database-schemas/oracle.xml"
>   location="jdbc/OracleCoreDS"
>   xa-location="jdbc/xa/OracleXADS"
>   ejb-location="jdbc/OracleDS"
>  
> connection-driver="oracle.jdbc.driver.OracleDriver"
>   username="myName"
>   password="myPasswd"
>   url="jdbc:oracle:thin:@myhost:1521:mydb"
>   inactivity-timeout="30"
>/>
> 
> I hope this will help you.
> 
> 
> Good Luck
> 
> Doug Pham
> 
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On
> Behalf Of Mustafa Cayci
> Sent: Tuesday, May 29, 2001 2:23 PM
> To: Orion-Interest
> Subject: ATM example and Oracle
> 
> I am trying to deploy and run the ATM example using
> Oracle as database.  Below is the data-sources.xml,
> I
> anticipate a problem in the file since orion is not
> finding the data source:
> 
>  
> class="oracle.jdbc.driver.OracleDriver"
> name="Oracle"
>  --->   location=""
> 
> connection-driver="oracle.jdbc.driver.OracleDriver"
> username="scott"
> password="tiger"
> url="jdbc:oracle:oci8:@ora816"
> inactivity-timeout="30"
> />
> What does the location should be?
> 
> Any help is appreciated.
> 
> Thanks,
> Mustafa
> 
> __
> Do You Yahoo!?
> Yahoo! Auctions - buy the things you want at great
> prices
> http://auctions.yahoo.com/
> 


__
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/




Re: ATM example and Oracle

2001-05-29 Thread B. Dawkins

Mustafa,
I was able to get the ATM demo running.  My sure you put the SID between :SID:PORT
Brandy

>From: Mustafa Cayci <[EMAIL PROTECTED]>
>Reply-To: Orion-Interest <[EMAIL PROTECTED]>
>To: Orion-Interest <[EMAIL PROTECTED]>
>Subject: ATM example and Oracle 
>Date: Tue, 29 May 2001 12:22:36 -0700 (PDT) 
> 
>I am trying to deploy and run the ATM example using 
>Oracle as database. Below is the data-sources.xml, I 
>anticipate a problem in the file since orion is not 
>finding the data source: 
> 
> > 
>class="oracle.jdbc.driver.OracleDriver" 
> name="Oracle" 
> ---> location="" 
> 
>connection-driver="oracle.jdbc.driver.OracleDriver" 
> username="scott" 
> password="tiger" 
> url="jdbc:oracle:oci8:@ora816" 
> inactivity-timeout="30" 
> /> 
>What does the location should be? 
> 
>Any help is appreciated. 
> 
>Thanks, 
>Mustafa 
> 
>__ 
>Do You Yahoo!? 
>Yahoo! Auctions - buy the things you want at great prices 
>http://auctions.yahoo.com/ 
> 
Get your FREE download of MSN Explorer at http://explorer.msn.com



RE: ATM example and Oracle

2001-05-29 Thread Doug Pham

Mustafa,

Here is one that I am using.  Make sure your jdbc drivers are in the Orion's
library directory.

   

I hope this will help you.


Good Luck

Doug Pham

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Mustafa Cayci
Sent: Tuesday, May 29, 2001 2:23 PM
To: Orion-Interest
Subject: ATM example and Oracle

I am trying to deploy and run the ATM example using
Oracle as database.  Below is the data-sources.xml, I
anticipate a problem in the file since orion is not
finding the data source:

   location=""

connection-driver="oracle.jdbc.driver.OracleDriver"
username="scott"
password="tiger"
url="jdbc:oracle:oci8:@ora816"
inactivity-timeout="30"
/>
What does the location should be?

Any help is appreciated.

Thanks,
Mustafa

__
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/




Re: ATM example and Oracle

2001-05-29 Thread Rafael Alvarez

Hello Mustafa,
You need to put the JNDI location of the Datasource. Check out
data-sources.xml.html in the docs. This locations does NOT support
connection pooling and transactions.

Tuesday, May 29, 2001, 3:22:36 PM, you wrote:

MC> I am trying to deploy and run the ATM example using
MC> Oracle as database.  Below is the data-sources.xml, I
MC> anticipate a problem in the file since orion is not
MC> finding the data source:

MC>  class="oracle.jdbc.driver.OracleDriver"
MC> name="Oracle"
MC>  --->   location=""
   
MC> connection-driver="oracle.jdbc.driver.OracleDriver"
MC> username="scott"
MC> password="tiger"
MC> url="jdbc:oracle:oci8:@ora816"
MC> inactivity-timeout="30"
MC> />
MC> What does the location should be?

MC> Any help is appreciated.

MC> Thanks,
MC> Mustafa

MC> __
MC> Do You Yahoo!?
MC> Yahoo! Auctions - buy the things you want at great prices
MC> http://auctions.yahoo.com/




-- 
Best regards,
 Rafaelmailto:[EMAIL PROTECTED]






RE: ATM example and Oracle

2001-05-29 Thread elephantwalker

Try this one...it should be in the orion/config
directory...data-sources.xml:


http://www.orionserver.com/dtds/data-sources.dtd";>





regards,

the elephantwalker



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Mustafa Cayci
Sent: Tuesday, May 29, 2001 12:23 PM
To: Orion-Interest
Subject: ATM example and Oracle


I am trying to deploy and run the ATM example using
Oracle as database.  Below is the data-sources.xml, I
anticipate a problem in the file since orion is not
finding the data source:

   location=""

connection-driver="oracle.jdbc.driver.OracleDriver"
username="scott"
password="tiger"
url="jdbc:oracle:oci8:@ora816"
inactivity-timeout="30"
/>
What does the location should be?

Any help is appreciated.

Thanks,
Mustafa

__
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/





ATM example and Oracle

2001-05-29 Thread Mustafa Cayci

I am trying to deploy and run the ATM example using
Oracle as database.  Below is the data-sources.xml, I
anticipate a problem in the file since orion is not
finding the data source:

   location=""
   
connection-driver="oracle.jdbc.driver.OracleDriver"
username="scott"
password="tiger"
url="jdbc:oracle:oci8:@ora816"
inactivity-timeout="30"
/>
What does the location should be?

Any help is appreciated.

Thanks,
Mustafa

__
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/