- Developing SOA Applications with Oracle SOA Suite
- Sharing Functionality Across Service Components
- Working with Cross References
- Creating and Running Cross Reference for 1M Functions
- How to Create the Use Case
- Task 1: How to Configure the Oracle Database and Database Adapter
Task 1: How to Configure the Oracle Database and Database Adapter
To configure the Oracle database and database adapter:
- You need the
SCOTT
database account with passwordTIGER
for this use case. You must ensure that theSCOTT
account is unlocked.You can log in as
SYSDBA
and then run thesetup_user.sql
script available in theXrefOrderApp1M/sql
folder to unlock the account. - Run the
create_schema.sql
script available in theXrefOrderApp1M/sql
folder to create the tables required for this use case. - Run the
create_app_procedure.sql
script available in theXrefOrderApp1M/sql
folder to create a procedure that simulates the various applications participating in this integration. - Run the
createschema_xref_oracle.sql
script available in theOracle_Home
/rcu/integration/soainfra/sql/xref/
folder to create a cross reference table to store runtime cross reference data. - Copy the
ra.xml
andweblogic-ra.xml
files from$BEAHOME/META-INF
to the newly created directory calledMETA-INF
on your computer. - Edit the
weblogic-ra.xml
file, which is available in the$BEAHOME/src/oracle/tip/adapter/db/test/deploy/weblogic/META-INF
folder for your SOA application, as follows:-
Modify the property to
xADataSourceName
as follows:<property> <name>xADataSourceName</name> <value>jdbc/DBConnection1</value> </property>
-
Modify the
jndi-name
as follows:<jndi-name> eis/DB/DBConnection1</jndi-name>
This sample uses
eis/DB/DBConnection1
to poll theSAP
table for new messages and to connect to the procedure that simulates Oracle EBS and Siebel instances. -
- Package the
ra.xml
andweblogic-ra.xml
files as a RAR file and deploy the RAR file by using Oracle WebLogic Remote Console. - Create a data source using the Oracle WebLogic Remote Console with the following values:
-
jndi-name=
jdbc/DBConnection1
-
user=
scott
-
password=
tiger
-
url=
jdbc:oracle:thin:@host:port:service
-
connection-factory factory-class=
oracle.jdbc.pool.OracleDataSource
-
- Create a data source using the Oracle WebLogic Remote Console with the following values:
-
jndi-name=
jdbc/xref
-
user=
scott
-
password=
tiger
-
url=
jdbc:oracle:thin:@host:port:service
-
connection-factory factory-class=
oracle.jdbc.pool.OracleDataSource
-