Hi , I want to manually create a DataSource inside Oc4J standalone
I mean manualy means placing this syntax inside the oc4j\j2ee\home\config\data-sources.xml . I ahve seen this syntax in a site .
We don't use
EJB in our Application , so please tell me what should be the values should be given for
1. location
2. xa-location
3. ejb-location
<data-source
class="com.evermind.sql.DriverManagerDataSource"
name="OracleDS"
location="jdbc/OracleCoreDS"
xa-location="jdbc/xa/OracleXADS"
ejb-location="jdbc/OracleDS"
connection-driver="oracle.jdbc.driver.OracleDriver"
username="scott"
password="->pwForScott"
url="jdbc:oracle:thin:@localhost:1521:oracle"
inactivity-timeout="30"
/>
Thanks in advance .