Setting up Oracle XML Gateway for EBS 12.1.3

Hi Experts,
We are currently working on R12.1.3 and was asked to check on how to setup/integrate XML Gateway on R12.1.3.
I have gone though many pages of this forums and checked the support ID's as given below :
Installing Oracle XML Gateway and Oracle Workflow with Oracle Applications 11i [ID 152775.1]  -->  Its for 11i, don't find the same for R12.
Oracle XML Gateway Release Notes, Release 12.1.3 --> does not help giving the information on how to setup XML Gateway
Found the below link but not sure if this is what was asked and looks like Client Desktop Installation.
11i - 12 How To Download and Install the Latest Oracle Workflow Builder (Client Tool) and XML Gateway Message Designer for E-Business (Doc ID 261028.1)
I don't know much about Oracle XML Gateway and how to integrate this to EBS R12, I am not able to find how to integrate this with the existing R12.1.3.
Please someone guide me though this.
Also, I would like to know what benefit could we get with XML Gateway setup when we have the workflows and similar setups already available with R12.1.3, and is there is a way to work out the XML messages inside R12.1.3 without setting up XML Gateway.
Experts please clarify the above and guide me and would highly appreciate for a quick response.
Regards,
Sandy

Hi Sandy,
Did you try the documentation library? The following gives you a detail explanation on how you can setup XML gateway on R12.1.3:
http://docs.oracle.com/cd/B53825_08/current/acrobat/121ecxug.pdf
In addition, also please review notes:
Oracle XML Gateway Release Notes for Release 12.1.3 (Doc ID 1096991.1)
11i - 12 How To Download and Install the Latest Oracle Workflow Builder (Client Tool) and XML Gateway Message Designer for E-Business (Doc ID 261028.1)
Also please review the Forum Search, as this will allow a better understanding.
Forum Search: XML Gateway
Thanks &
Best Regards,

Similar Messages

  • XML Gateway for EBS

    Hi,
    i am new to this EBS, i am not sure i use the correct word (XML Gateway). i would want to write some programs in the form of URL (people usually it call it XML web call?), so that when other system developed in PL/SQL can refer to this URL whenever they want a certain transaction. It is for warning or validation purpose.
    Below is the scenario.
    For example: i have set the credit limit of $5000 for CUSTOMER A in EBS. So when my user input the order for this CUSTOMER A in other system developed in PL/SQL (mod plsql), i want the package of PL/SQL to make a web call, and this web call will return the result in XML output. <status> and <error_message>. If the status=1 then success, if status=0, then that PL/SQL package should return error.
    how do i achieve that?
    thanks
    Robert

    Robert Tsang wrote:
    hi Srini/Hussein,
    am i in the right track for my query?? is it XML Gateway for EBS?
    regards,
    RobertAFAIK, XML Gateway is used for bulk xml processing using flat files (e.g. EDI transactions). I believe what you are looking for is an EBS function that is exposed as a web service that is callable over middleware using SOA. There are a few examples out there - google for "oracle ebs web service". R12.1.3 has built in SOA gateway that can be used to expose EBS APIs as web services. Check the SOA Gateway R12.1.3 docs at http://download.oracle.com/docs/cd/B53825_07/current/html/docset.html
    HTH
    Srini

  • Oracle XML Gateway Message Designer for Oracle EBS R12.1.2

    Goog Day to everyone!
    I'm Looking for the tool "XML Gateway Message Designer". I have found in Metalink(Oracle Support) the note ID 557101.1, here explain how to get the message designer for Oracle Apps R12. It says that you have to download the patch 4066964. This patch install the Oracle Workflow Builder (2.6.3.0.1) and the Oracle XML Gateway Message Designer (2.6.3). This tools are supported to be used with Oracle Apps 11.5.10 and 12.0.X.
    The release of Oracle Apps that I'm using is 12.1.2.
    Questions:
    - The version of the Message Designer that you get from patch 4066964 works for OraApps R12.1.2 ?
    - The version of the Workflow Builder that you get from patch 4066964 works for OraApps R12.1.2 ?
    - If the version of Message Designer doesn't work with OraApps R12.1.2, where can I find one that works with it?
    Thanks for your advice.
    LCJ

    Hi Hussein,
    Thanks for replay.
    I downloaded the rapid install package from e-delivery. The B53824-01_4of4 was the OWB installer, and it has a readme file that says: "+This patch contains Oracle Workflow Builder (version 2.6.3.0.1) and Oracle XML Gateway Message Designer (version 2.6.3). These client tools are supported for use with an Oracle E-Business Suite Release 12.1 instance.+"
    I believe, as well as you, that it should be work for 12.1.2.
    I'm gonna make some test, and in a few days I will post my results.
    Thanks for the help.
    LCJ

  • XML Gateway for Oracle Applications to 3rd Party Application System

    Hi,
    I am having one unique requirement for sending/receving an xml file from Oracle Applications to 3rd Party Application system (which supports XML). Has anyone worked on the XML Gateway for sending/receiving the PO/ASN or Pick Release/Ship Confirm XML information from Oracle Applications (11.5.9 or above) to 3rd Party Application System.
    Looking forward your valuable inputs/suggestions on this.
    Note: Please note that, Trading Partner setup has to be done for a 3rd Party Application System.
    Thanks in advance,
    Regards,
    Muru

    Hi
    Were you able to acheive this , Please share the steps you followed by dropping a mail to [email protected]
    Thanks
    Prasad C P

  • Oracle XML Gateway- Mapping XML to Oracle Apps API - Wrong Number or types

    XML GATEWAY INBOUND – CALLING AN API (PL/SQL record type IN variable) TO INSERT THE DATA INTO SAMPLE TABLE
    Hi,
    I am using XML Gateway to push data into Oracle Apps using a procedure call with “Record Type” as the parameter. I am getting a “wrong number” or types of arguments mismatch error inspite of following the process described in the Oracle XML Gateway User’s Guide
    Steps followed:
    DB
    1. I Created a sample table XX_CUST_HIST(ID NUMBER, ACCOUNT_NAME VARCHAR2(50), FIRST_NAME VARCHAR2(50), LAST_NAME VARCHAR2(50), TITLE VARCHAR2(50))
    2. I then Created a package ‘XX_XML_DEMO_API’ in which we have defined a record type and a procedure.
    3. The Record type ‘customerRecordType’ holds account_name , first_name, last_name and the title.
    4. The Procedure ‘insert_customer_r’ takes 2 IN arguments :
    1. p_ id number
    2. p_customer customerRecordType
    5. The procedure will insert the values into xx_cust_hist table
    p_id -> id
    p_customer.account_name -> account_name
    p_customer.first_name -> first_name
    p_customer.last_name -> last_name
    p_customer.title -> title
    Now I need to call the procedure ‘XX_XML_DEMO_API . insert_customer_r’ from XML gateway.
    Following are the steps to call the procedure:
    [1] Create DTD
    ELEMENT NEW_CUSTOMER_APIR (DATAAREA)
    ELEMENT DATAAREA (CUSTOMER_DATA)
    ELEMENT CUSTOMER_DATA (ID, CUSTOMER_RECORD)
    ELEMENT ID (#PCDATA) ELEMENT CUSTOMER_RECORD (ACCOUNT_NAME, FIRST_NAME, LAST_NAME, TITLE)
    ELEMENT ACCOUNT_NAME (#PCDATA)
    ELEMENT FIRST_NAME (#PCDATA)
    ELEMENT LAST_NAME (#PCDATA)
    ELEMENT TITLE (#PCDATA)
    [2] Creation of XML map Data Definition type for Source and Destination are set to XML.
    While executing the procedure ‘XX_XML_DEMO_API . insert_customer_r’ in post_process from the message designer, instead of 2 (p_id IN number , p_customer IN customerRecordType) parameters it is showing 6 parameters (p_id IN number, p_customer IN customerRecordType, account_name IN varchar2, first_name IN varchar2, last_name IN varchar2, title IN varchar2). Six parameters are getting mapped, instead of the 2 that the procedure really needs.
    [3] Testing of XML map. Error message in transaction monitor:
    ORA-06550: line 1, column 7: PLS-00306: wrong number or types of arguments in call to 'INSERT_CUSTOMER_R' ORA-06550: line 1, column 7: PL/SQL: Statement ignored -
    ECX_ACTIONS.BIND_PROC_VARIABLES
    The process executed and produced the error message given in the step 3. The standard documentation is unclear on how this should be done. Being a newbie to the XML Gateway technology I am unable to get a clue about what the error message could be and which step of the process produced the message. Could anyone help me to proceed further?
    Thanks in advance.

    Hi Siva,
    It seems like the walletkey property of event type is defined incorrectly. Please try by defining the event as follows:
    <wlevs:property name="walletkey" type="char" length="20"/>
    Use "char" instead of "char[]".
    Best Regards,
    Sandeep

  • What is this Oracle XML GateWay

    Hi All
    Our client need to generate .txt file using Oracle XML GateWay.. may i know this xml gateway is related to XML ublisher report?
    Can any one tells about this XML GAteWay?
    Can we generate the .txt file Using this.. If so can any one tell the flow....

    Hi;
    In addition to Hussein Sawwan great post Please check below link:
    http://www.di.unipi.it/~ghelli/didattica/bdldoc/A97329_03/web.902/a88894/adx17gat.htm
    From doc:
    What is XML Gateway?
    With Release 11i.4 of the Oracle e-Business Suite, Oracle XML Gateway emerges as a key component of Oracle's application integration framework. XML Gateway is a set of services that allows for easy integration with the Oracle e-Business Suite to create and consume XML messages triggered by business events. It integrates with Oracle Advanced Queuing to enqueue/dequeue a message which is then transmitted to/from the business partner via any message transport agent.
    Regard
    Helios

  • How to configure distributed transaction in Oracle Database Gateway for ODBC? (ORA-02047)

    I am connecting from Oracle to another database server (MS SQL Server, DB2 the error message is the same) through an ODBC connection using Oracle SQL Developer. (This is how I set up)
    I want to query the schema of a non-Oracle database using the data dictionary mapping of the Oracle Database Gateway for ODBC.
    This works well:
    select * from all_tables@katimssql;
    But this doesn't:
    create table alltables_mssql as
    select * from all_tables@katimssql;
    Output:
    Error report:
    SQL Error: ORA-00604: error occurred at recursive SQL level 1
    ORA-02047: cannot join the distributed transaction in progress
    ORA-06512: at "SYS.HS$_DDTF_SQLTABLES", line 58
    ORA-06512: at line 1
    Does anyone know the solution of this?
    Thanks in advance,
    Kata
    Details:
    Oracle Database 11g Express Edition Release 11.2.0.2.0
    Microsoft SQL Server 2008 (SP2) - 10.0.4000.0 (X64)
    ODBC Driver: SQL Server Native Client 11.0 (32 bit)
    initkatimssql.ora:
    HS_FDS_CONNECT_INFO=katimssql
    HS_FDS_TRACE_LEVEL = ON
    HS_TRANSACTION_MODEL = READ_ONLY_AUTOCOMMIT
    I tried these, none of them worked, the error message is the same.
    HS_FDS_TRACE_LEVEL = off
    HS_TRANSACTION_MODEL = SINGLE_SITE
    HS_TRANSACTION_MODEL = READ_ONLY_AUTOCOMMIT
    HS_TRANSACTION_MODEL = READ_ONLY

    Hi Kata,
    this won't work as the ALL_TABLES is not a table that exists in your SQl Server  - instead it is a "mimicked" table. This means the gateway will check if you have on your SQL Server a table called all_tables and when there's no table it will start an internal mechanism to check out what sort of tables exist in your SQL Server database. So the gateway is starting internally another transaction to get details from the foreign database and DG4ODBC can't participate in distributed transactions at all. Instead of using all_tables you have to use a real SQL Server table like SQ Server sys.objects or sys.tables.
    - Klaus

  • Want to configure Oracle EDI Gateway for Inbound Invoice Interface

    Hello,
    Newbie to Oracle Apps and want to configure Oracle EDI Gateway for Inbound Invoice Interface. We are having Oracle EBS R12 installed on OEL 5.6
    Do i need to install EDI Gateway or it comes with APPS R12 installation ? if i have to install it explicitly then which EDI version i have to install ? what are steps should i follow to achieve desired results.
    One more query, we are having old version of Oracle APPS 6i too, is it possible to configure Oracle EDI Gateway on it ??
    You help will be highly appreciated.

    Try to post your message on dedicated EBS forums http://forums.oracle.com/forums/category.jspa?categoryID=3.

  • Oracle Transparent Gateway for MS SQL Server

    Hello,
    I successfully installed the Oracle transparent Gateway for MS SQL Server for Oracle 8i. Now I am doing the same for Oracle 9i.
    Does anyone know how to 'create a new gateway service' on 9i???
    This is how you would do that on 8i on the Windows box...
    1) At the MS-DOS prompt, enter:
    > set GTW_EXE=TG4MSQL.EXE
    2) To create a new gateway service name, enter:
    > GTWSRV73 sid -CREATE | MORE
    -where sid is the gateway sid.
    Does anyone know how to do those steps for 9i Oracle Transparent Gateway?
    Thank you.

    Hi
    I need oracle Tranparent Gateway for Microsoft Sqlserver (tg4msql) for oracle 10g on linux x86-64 bit. I have searched for it on otn.oracle.com and on edelivery.oracle.com. But couldn't find it.
    Can any one help me in this regard.
    Regards
    Nadir.

  • Oracle XML Gateway How to download .xgm from the database

    I am trying to find the utitlity called DownloadMap.java to dowload the .xgm mapping from the database as stipulated in the Oracle XML Gateway Users Guide. I am not able to find this utility and could not get any leads.
    Our requirement is to extend the seeded outbound invoice mappings to add additional data elements before generating XML document.
    We will appreciate if any lead or explanation is provided by our community.
    Looking forward for a voice in our community in this regard.
    Thank you,
    Jothiram

    This post is to the wrong Forum, try the XML forum

  • OracleApps Adapter VS Oracle XML Gateway

    Can any one tell me difference between Interconnect Oracle Apps adapter and Oracle XML Gateway. I am not familiar with Oracle XML gateway tool. I wonder if i could use XML Gateway comes with Interconnect Oracle Apps adapter instead of the product Oracle XML Gateway.

    Hi,
    I am also having one question relating to this thread.
    We are using Oracle Applications 11.5.10.
    We have a Business Requirement to send Approved Purchased Orders to Supplier in XML format.
    We have made all the required setup to generate the PO in XML format using XML Gateway, which places the XML message in a queue.
    Our design expert has suggested us to use Oracle Applications Interconnect for sending the message to the supplier through AQ adapter (From Oracle Apps to Interconnect) and HTTP adapter (from Interconnect to supplier).
    As per my knowledge (read in Oracle documentation) this can be done using Oracle Transport Agent (OTA), which comes with Oracle XML Gateway and also I believe that OTA is tightly integrated with Oracle XML gateway and we can easily track the status of the message.
    When contacted our design expert he told that there are some advantages of using Interconnect but I didn't understand his argument well, may be because I am very much new to using Oracle Interconnect.
    I will be grateful if somebody could tell me, how advantageous is using Interconnect over Oracle Transport Agent (OTA) (please note we are not doing any modifications to the message generated by XML gateway, we are transferring as it is).
    Thanks in Advance,
    Thiru

  • ORACLE XML PARSER FOR JAVA FOR AIX

    Hi people!
    I'm looking for the Oracle XML Parser for Java 9.0.2.0.0C, my 9iAS is BI Installation 9.0.2.3, where can I get it? In the Downloads Section there is only the version for 10g, and the existing versions for 9i are not for AIX (my OS is AIX 5.2L).
    Thanks.

    Thanks for your help, I navigate through this link and, even it shows a table where appears the release for AIX (9.2.0.6.0), when I get to http://www.oracle.com/technology/tech/xml/xdk/software/prod/utilsoft_java.htm
    it shows me only downloads for Sun, Linux and HP-UX, but not for AIX.
    Has the version for AIX being deprecated or something like that?

  • XML parsing problems with Oracle XML parser for PL/SQL

    I am using the Oracle XML parser for PL/SQL to transform XML into HTML usign XSL. The parser gives me sporadic errors trying to parse various XML documents. For the same XML source, the XMLPARSER will parse without errors one day and the next day will give me errors such as "invalid char in text", "Expected ';'.", or even Java null pointer exceptions.
    I have verified that the XML sources are well formed, so I am pretty certain that the problems I am having are bugs in the XMLPARSER.
    Is there going to be a XML parser for PL/SQL version 2 that will fix these bugs? If so, when??? If not, is there anything else I could do to fix these problems?
    Thanks!

    You can use the latest version.

  • Oracle XML Parser for Java

    Does the latest release of the Oracle XML Parser for Java support JDK 1.2.2?
    I have an application which makes use of the XML Parser which runs fine with JDK 1.1.7.
    But the application crashes with the use of JDK 1.2.2 .
    Any insight into this is appreciated.
    null

    The Oracle XSQL Servlet makes extensive use of the Oracle XML Parser for Java V2 as well as its XSLT Engine and runs without issue under 1.1.8 and 1.2.2.

  • Upgrading Oracle XML Parser for Java v9.0.4 with Oracle Applications 11i

    Guys, I applied ATG.PF.H.RUP4. In postinstall steps it is mentioned,Upgrading Oracle XML Parser for Java v9.0.4 with Oracle Applications 11i(doc-271148.1)
    which says after applying patch 4038964 do the following--
    AUTOCONFIG ENABLED APPLICATIONS ENVIRONMENT
    If the Oracle E-Business Suite configuration files are maintained using the AutoConfig infrastructure, proceed with the following:
    1. Run the AutoConfig utility.
    2. Go to [JAVA_TOP].
    3. Run the unzip -l appsborg2.zip | grep 9.0.4 command. If there is a file named as .xdkjava_version_9.0.4.0.0_production, which indicates that XML Parser for Java v9.0.4 is installed correctly as part of appsborg2.zip. Otherwise, run ADAdmin to regenerate the appsborg2.zip file.
    4. Restart the application tier server processes such that the new version of Oracle XML Parser for Java will take effect.
    but actually the patch is already applied- 4038964. How do i verify if i need to do these steps or not.
    The xmlparserv2-904.zip file is already there in wrapper.classpath. of jserv.properties, forms.properties. So i think i dont need to do these steps.

    unzip -l appsborg2.zip | grep 9.0.4
    0 04-18-03 20:10 .xdkjava_version_9.0.4.0.0_production
    do i still need to do that step?No, you do not have to since "XML Parser for Java v9.0.4" is already installed as part of appsborg2.zip

Maybe you are looking for