Complete Installation and Configuration of Oracle Data Integrator
Complete Installation and Configuration of Oracle Data Integrator
Installing Oracle Data Integrator, Oracle Data Profiling, Oracle Data Quality
Check "Oracle Data Integrator, Oracle Data Profiling, Oracle Data Quality 10.1.3.5.0" and click next
Configuring Repository
After install is finished execute the script to create master and work repository user. You can use the one I did
-- tablespace for master repository create tablespace ts_odim logging datafile 'C:\oracle\ora10g\database\oradata\orcl\ts_odim.dbf' size 32m autoextend on; -- tablespace for work repository create tablespace ts_odiw logging datafile 'C:\oracle\ora10g\database\oradata\orcl\ts_odiw.dbf' size 32m autoextend on; create temporary tablespace tmp_odi tempfile 'C:\oracle\ora10g\database\oradata\orcl\tmp_odi.dbf' size 32m autoextend on ;
-- USER SQL CREATE USER snpm IDENTIFIED BY snpm123 DEFAULT TABLESPACE TS_ODIM TEMPORARY TABLESPACE TMP_ODI; GRANT CONNECT, RESOURCE TO snpm; CREATE USER snpw IDENTIFIED BY snpw123 DEFAULT TABLESPACE TS_ODIW TEMPORARY TABLESPACE TMP_ODI; GRANT CONNECT, RESOURCE TO snpw;
Launch bin/repcreate.bat or bin/repcreate.sh to create Master Repository. Complete fields and click OK
To connect to the Master repository launch the Topology Manager script (bin/topology.bat or bin/topology.sh) Click on the button New
Click on Test to check the connection is working. Validate by OK, then OK. Topology Manager opens.
In the icon list Topology -> Repositories -> Work repositories, click with the right button, then choose Insert work repository.
Open Enterprise Manager console Click oc4j_odi > Applications > Deploy Browse to location <ODI_DOWNLOAD_DIR>\setup\Manual and select oracledilwd.war file (Lightweight Designer)
Click Next
Click Deploy
Lightweight Designer connects the repositories though JDBC datasource. Update datasources.xml to have connection pool and datasources configured as below.
<managed-data-source user="snpm" password="snpm123" connection-poolname="ODI_CONNECTION_POOL" jndi-name="jdbc/ORACLE_MASTER" name="ODI_MASTER_DS"/> <managed-data-source user="snpw" password="snpw123" connection-poolname="ODI_CONNECTION_POOL" jndi-name="jdbc/ORACLE_WORK" name="ODI_WORK_DS"/> <connection-pool name="ODI_CONNECTION_POOL"> <connection-factory factory-class="oracle.jdbc.pool.OracleDataSource" url="jdbc:oracle:thin:@//localhost:1521/orcl"/> </connection-pool>
Add the entries to link the datasource in the application context. Edit web.xml located under <OC4J_ODI>\applications\oracledilwd\oracledilwd\WEB-INF\web.xml
<resource-ref> <description>Oracle Datasource for the Master Repository</description> <res-ref-name>jdbc/ORACLE_MASTER</res-ref-name> <res-type>javax.sql.DataSource</res-type> <res-auth>Container</res-auth> <res-sharing-scope>Unshareable</res-sharing-scope> </resource-ref> <resource-ref> <description>Oracle Datasource for the Work Repository</description> <res-ref-name>jdbc/ORACLE_WORK</res-ref-name>
Define the Lightweight Designer login information to the work repositories. Edit repositories.xml located under <OC4J_ODI\applications\oracledilwd\oracledilwd\
<login name="My Work Repository"> <master name="jdbc/ORACLE_MASTER" masterDriver="oracle.jdbc.OracleDriver"/> <work name="jdbc/ORACLE_WORK" workName="WORKREP"/> </login>
Browse to location <ODI_DOWNLOAD_DIR>\setup\Manual and select oracledimn.war file (Metadata Navigator). Click Next
Click Deploy
Configuring Repository Connections To configure the connections to your repositories in the web application, we need to follow two steps.
Configure the connection to the work repository in Designer. Copy the snps_login_work.xml file from <ODI_HOME>\oracledi\bin directory into <OC4J_ODI>\applications\oracledimn\oracledimn\WEB-INF/WEB_INF
Download Axis 1.2 WAR file from http://ws.apache.org/axis2/download/1_2/download.cgi. It would be a zip file download, simply rename it to axis2.war Click oc4j_odi > Applications > Deploy
Click on the Validate button, the happy axis page will appear: http://oc4j_host:oc4j_port/axis2/axis2-web/HappyAxis.js Click on the Administration link will take you to http://oc4j_host:oc4j_port/axis2/axis2admin the default username/password are: admin/axis2
Deploy odi-public-ws.aar located under <ODI_DOWNLOAD_DIR>\oracledi\tools\web_services using the "Upload Service" link or drop into webapps/axis2/web-inf/services directory
Deployment confirmation page showing success (or in cases will show errors)
Configuring JDeveloper
To show local WSIL registry uncomment External Source for WSIL lcoated under <JDEV_HOME>\integration\bpm\designer\config\serviceexplorer_plugin.xml
Create inspection.wsil manually to the same directory where serviceexplorer_plugin.xml is located. <JDEV_HOME>\integration\bpm\designer\config\inspection.wsil
Restart JDeveloper and you should be able to see service in "Service Explorer". You can now use it with BPEL, AIA, OSB or any other service aware application.
Category: Installation Tags: JDeveloper ODI ODI Web Applications ODI Web Service Oracle Data Integrator Permanent link to this entry Using Oracle SOA... | Main | JGroups Log Configur... Comments: Kavin, Thanks for this insightful article. Being a newbie to Java and ODI, I have a couple of questions pertaining to installing accessing Metadata Navigator. 1.) Installing the WAR file needs IAS to be installed and up and running ? My OEM doesnt show me any options for "Application Control" 2.) After installing the "oracledimn.war" file, why do you configure Apache Axis 2 and subsequently JDeveloper ? What is their need and relevance for Metadata Navigator. Thanks Posted by Ankit Jain on September 08, 2009 at 09:02 AM EDT # Regarding Q# 1, if you have Enterprise Manager running for your application server, you can use it to install / deploy apps in any other oc4j associated with that EM. If your application doesn't have AS control up and running, please refer to one of my old blogs to how to enable ascontrol application. Regarding Q#2, you need Axis to host / expose ODI web services to be able to communicate with other products like AIA, BPEL, ESB. Also JDev step is for the same purpose. So now if you want to create a BPEL process to kick-off ODI session, use ODI web service as partner link and perform the operation. HTH, Regards, Kavin
Posted by kavin.mehta on September 08, 2009 at 09:20 AM EDT # Thanks for this article. I have installed ODI 11g and SOA suite 11g with weblogic I am having 2 problems 1. When connecting to Lightweight Designer; in the login page I am getting a warning message: "While trying to look up jdbc in java:comp/env." . You have an idea why I'm this warning message?? 2. I have downloaded the latest version of Axis 2 (1.5), I have renamed the zip file to .war; after deploying I cannot access the axis page. I have also tried to unzip and deploy the war file; while doing so I had an error hence the deployment cannot be done in this way. Do you know why I cant access the Axis page?? Posted by Mevin on October 10, 2009 at 09:22 AM EDT # Post a Comment:
Your Comment: HTML Syntax: NOT allowed Please answer this simple math question 0 + 94 =
Post
About
bocadmin_ww
Search
Whitepaper: BAM Deployment using ANT scripts Complete Installation and Configuration of SOA Suite 10.1.3.5.1 Installation of Oracle Fusion Middleware 11g R2 JGroups Log Configuration Complete Installation and configuration of Oracle Data Integrator (ODI), ODI Web Services with JDeveloper, BPEL Using Oracle SOA Suite Command-Line Upgrade Tool to merge Multiple BPEL Projects Into a Single Composite Directory Browsing in Apache Error: Remote request refused because authentication is not configured Error: Missing ormi[s]://: Error: Cannot load page due to truncated or corrupt class
Top Tags
Adapter Apache Apps Adapter AQ Adapter BAM BAM 11g BAM 11g install BAM Deployment Book Review BPEL BPEL Admin BPEL Console. ESB Console BPEL Default Version BPEL Deployment BPEL Domain Configuration BPEL Domain Log BPEL Migration BPEL PM Connection Pooling Debugging Deployment Directory Browsing ESB ESB Bulk Resubmit
ESB Client API ESB DVM Update ESB Failed Instance ESB Migration ESB Repository FTP Adapter FTP Adapter Connection Pooling Fusion Middleware 11g Fusion Middleware 11g install Harvester HTTP Server Introspection JCA Adapter JDeveloper JDeveloper 11g OC4J OPatch OPMN Oracle Application Server Oracle Apps Adapter Oracle BPEL Oracle ESB Oracle JDeveloper Oracle Rules Engine Oracle SOA Suite SOA Suite
Categories
Oracle
o o o o o o o o o o o o o o o o
Analysis Announcements Best Practices Configuration Debugging Deployment Design Development Implementation Information Installation Maintenance Performance Tuning Planning Review Setup
o o o o o Archives
November 2011 Sun Mon Tue Wed Thu Fri Sat 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 Today
Menu Feeds
RSS
Atom
The views expressed on this blog are those of the author and do not necessarily reflect the views of Oracle. Terms of Use | Your Privacy Rights