Soa WSDL in Oracle
Soa WSDL in Oracle
Soa WSDL in Oracle
• Other references:
• Installing Oracle EBS Integrated SOA Gateway Doc 556540.1
• Troubleshooting on potential syptoms and corresponding
solutions for Oracle EBS Integrated SOA Gateway see the
Troubleshooting Guide 726414.1
• When Attempting to Create a Custom Integration Repository
Loader (*.ildt) File, the "$FND_TOP/bin/irep_parser.pl"
Command Fails "Can't Locate Class/MethodMaker.pm" (Doc ID
1079218.1)
SOA Integrated Gateway Patches, setup and configuration steps for Admin
Sukhvir has come up with the following patches needed to Setup and Configure SOA from the following document -
Installing Oracle E-Business Suite Integrated SOA Gateway, Release 12 [ID 556540.1]
The patch readme files have been placed in - S:\ESC\Dept\Oraproj\patch_history\2013 - Patches\SOA Patches.
Upgrade to Oracle Application Server 10g Release 3 (10.1.3) Patch Set 5 (10.1.3.5.0)
8920270 - INSTALLING AS 10.1.3.5 REQUIRES OCM RESPONSE FILE WHEN OCM IS NOT CONFIGURED
8626084 - PLACEHOLDER BUG TO UPLOAD AS 10.1.3.5 PATCH-SET ON ARU
8999551 - REQEUST TO EVALUATE TO REV UP THE JAVA MAILER APIS TO LATEST TO SUPPORT SSL
Apply the following patches to the Oracle Application Server 10.1.3.5 Oracle Home:
Patch 13800972: Merge Request on Top of 10.1.3.1.0 for Bugs 8857799 9223438 12352047 (Patch 13800972 is also compatible with
Oracle Application Server 10.1.3.5.0.)
Patch 9371120: Web Service Framework Takes More Time for Giving the Response
Patch 7366746: WLP: Enabling "Use SAML Authority: Verify Signature" Doesn't Require SAML Token
Patch 15914125: Merge Request on Top of 10.1.3.5.1 for Bugs 9187189 9668283 13248533
Patch 9157774:R12.OWF.B: BUG 9058430 - MLS Issue with Calling Web Service One-Off for 12.1.2
Patch 9070077:R12.OWF.B: One-Off: 9045280:12.1.1:12.1.1:Invoking a Web Service Requires NLS Language When It Should be
Apply Perl updates to prepare the parser for use in generating iLDT files for webservices.
Setup Perl objects in the environment so we can run objects through the parser to
generate iLDT files
DBA run:
Metalink Note that Matt provided to us
Configure PERL 1079218.1
***
a. Find physical path of $FND_TOP/perl.
b. Add this physical path in PERL5LIB variable.
> export PERL5LIB=$FND_TOP/perl:$PERL5LIB
We don't need to do the remaining steps of c and d since our settings looked okay
We were able to get around this by using the more recent version of the Compress-Raw-Zlib-2.060 File
Need to use
•Compress-Zlib-2.009
http://search.cpan.org/~pmqs/Compress-Zlib-2.009
•Class-MethodMaker-1.12
http://search.cpan.org/~fluffy/Class-MethodMaker-1.12
Unzip files:
gzip -d Compress-Raw-Zlib-2.009.tar.gz
tar -xvf Compress-Raw-Zlib-2.009.tar
cd Compress-Raw-Zlib-2.009
/*#
* get the employee name
* @param p_emp_no employee number
* @return employee name or error
* @rep:scope public
* @rep:lifecycle active
* @rep:displayname get full name
*/
FUNCTION get_name
( p_emp_no IN NUMBER)
RETURN VARCHAR2;
END emp_info;
Package created.
No errors.
CREATE OR REPLACE PACKAGE BODY emp_info AS
v_full_name VARCHAR2(50);
BEGIN
SELECT full_name INTO v_full_name
FROM per_people_f
WHERE employee_number = p_emp_no
AND sysdate BETWEEN effective_start_date AND effective_end_date;
RETURN(v_full_name);
END get_name;
END emp_info;
> sqlplus apps @emp_info.pkb
SQL*Plus: Release 10.1.0.5.0 - Production on Mon Oct 13 13:33:39 2014
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
• $IAS_ORACLE_HOME/perl/bin/perl $FND_TOP/bin/irep_parser.pl -g -v
-username=<a fnd username> <product>:<relative path from product
top>:<fileName>:<version>=<Complete File Path, if not in currect
directory>
• Example: $IAS_ORACLE_HOME/perl/bin/perl
$FND_TOP/bin/irep_parser.pl -g -v -username=sysadmin
ihchr:sql:emp_info.pkh:12.0=emp_info.pkh
ORACLE Password:
Log filename : L4011440.log