How to identiy XML Gateway version installed

How to identiy XML Gateway version installed

Hi,
Run ecxver.sql script -- See these docs for details:
Note: 167630.1 - Oracle XML Troubleshooting Script
Note: 337428.1 - XML Gateway Setup Testing and Diagnostics
Note: 167629.1 - Oracle XML Gateway Troubleshooting Scripts
Regards,
Hussein

Similar Messages

  • How to identify XML gateway patch version in R12 ?

    Hi,
    how to identify XML gateway patch version in R12.1.3? Which is the latest version available for R12.1.3
    Regards

    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> @ecxver.sql
    ECX_UTL_XSLT_DIR Profile :
    /usr/tmp
    ECX_OAG_LOGICALID Profile :
    ECX_SERVER_TIMEZONE Profile:
    ECX_SYS_ADMIN_EMAIL Profile:
    ECX_XML_VALIDATE_FLAG Profile: Y
    ECX_XML_MAXIMUM_SIZE Profile : 2000000
    utl_file_dir :
    /usr/tmp, /usr/tmp,
    /busdata/dfop/nca1/db/tech_st/11.1.0/appsutil/outbound/dfopnca1_oncerpd4,
    /usr/tmp, /busdata/dfop/nca1/db/tech_st/11.1.0/ccr/state
    Oracle XML Developers Kit 11.1.0.7.0 - Production
    Parser Version Ok
    XML Gateway Status Summary
    XML Parser Version OK
    All ECX Objects Valid? OK
    All XML Parser Objects Valid? OK
    OTA Running? N/A*
    Total Messages on Outbound Queue 0
    OTA Msgs on Outbound Queue 0
    Others Msgs on Outbound Queue 0
    Messages on Inbound Queue 0
    *Please use the ECXOTAPing.html as described in the Testing Oracle Transport
    Agent section of the User's Guide
    End of Summary
    Service Component Control Event Subscriptions
    EVENT_NAME RULE_FUNCTION OUT_AGENT STATUS
    oracle.apps.ecx.inbound.message.process [email protected]. MICHELIN.COM Not Defined ENABLED
    oracle.apps.ecx.inbound.message.process [email protected] N.COM Not Defined ENABLED
    oracle.apps.ecx.inbound.message.receive [email protected] N.COM Not Defined ENABLED
    oracle.apps.ecx.inbound.message.receive CLN_XMLG_EVENT_HANDLER_PKG.CLN_XMLG_SET [email protected] Not Defined ENABLED
    NC.MICHELIN.COM
    oracle.apps.ecx.inbound.message.receive CLN_XMLG_EVENT_HANDLER_PKG.CLN_XMLG_EVE [email protected] Not Defined ENABLED
    .MICHELIN.COM
    oracle.apps.ecx.inbound.message.receive CLN_XMLG_EVENT_HANDLER_PKG.CLN_XMLG_EVE [email protected] Not Defined ENABLED
    .MICHELIN.COM
    oracle.apps.ecx.inbound.message.receive [email protected]. MICHELIN.COM Not Defined ENABLED
    oracle.apps.ecx.processing.message.callb [email protected] LIN.COM Not Defined ENABLED
    ack
    oracle.apps.ecx.processing.message.error CLN_XMLG_EVENT_HANDLER_PKG.CLN_XMLG_PRO CESSING_ERROR_F@DFOPN Not Defined ENABLED
    CA1.ONC.MICHELIN.COM
    oracle.apps.ecx.processing.message.error [email protected] LIN.COM Not Defined ENABLED
    oracle.apps.ecx.processing.message.error [email protected] LIN.COM Not Defined ENABLED
    oracle.apps.ecx.processing.message.error [email protected] N.COM Not Defined ENABLED
    oracle.apps.ecx.processing.notification. [email protected] LIN.COM Not Defined ENABLED
    send
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64 bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Regards

  • How to tell which Oracle version installed 32bit or 64bit

    I have Oracle Database 8.1.7 running on AIX 5.2 server.
    How could I tell which version of Oracle Installed 32bit or 64bit?

    I have Oracle Database 8.1.7 running on AIX 5.2
    server.
    How could I tell which version of Oracle Installed
    32bit or 64bit?Look at the banner displayed in sqlplus when you log in, or else.
    SYS @ db11g >select banner from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    PL/SQL Release 11.1.0.6.0 - Production
    CORE    11.1.0.6.0      Production
    TNS for 32-bit Windows: Version 11.1.0.6.0 - Production
    NLSRTL Version 11.1.0.6.0 - ProductionYes it's 11g but that doesn't matter here - in fact this is my old 'what version is it' script the newer one looks at dba_registry. If it's 64bit it will say in the Database line, if it's 32bit it won't say.
    Niall Litchfield
    http://www.orawin.info.
    Message was edited for clarity by:
    Niall Litchfield

  • How to consume XML Gateway WS from a remote Oracle DB (10g)?

    Hi,
    I'm currently looking into consuming EBS web services, particularly the XML Gateway service from a remote database. For ease of use, I'm also using an Oracle 10g database.
    It seems there are several ways to skin a cat though. Hope you can help.
    1) Is it possible to use UTL_HTTP for this? If yes, can you please explain in detail as I have been trying to do this the past few days without success. Note, I was able to consume other web service examples, though. What url & SOAP action should I use?
    2) I built a proxy client stub using JDeveloper and deployed it to the DB. However my plsql procedure doesn't execute the java class. Any thoughts?
    Thanks,
    Charina

    Hi Charina,
    Regarding option 1), the url for the service endpoint and the value for the SOAPaction HTTP heaader are advertized in the WSDL for your service.
    The value of the utl is provided by the 'location' attribute for the soap:address element within a port.
    The value for the SOAPaction header is provided by the 'soapAction' attribute for the soap:operation element within a wsdl:binding/wsdl:operation element.
    You can have multiple ports and bindings advertized in a single WSDL. If this is the case for you, you need to make sure that the operation you are tryin to invoke is from the SOAP binding; the one with the transport attribute set to "http://schemas.xmlsoap.org/soap/http".
    Here is a WSDL snippet for illustration purposes:
      <binding name="CalculatePricePort" type="tns:CalculatePricePort">
        <soap:binding transport="http://schemas.xmlsoap.org/soap/http"
                      style="document"></soap:binding>
        <operation name="CalculatePrice">
          <soap:operation soapAction="document/http://siebel.com/OrderManagement/Quote/PSP:CalculatePrice"></soap:operation>
          <input>
            <soap:body use="literal"></soap:body>
          </input>
          <output>
            <soap:body use="literal"></soap:body>
          </output>
        </operation>
      </binding>
      <service name="CalculatePriceWS">
        <port binding="tns:CalculatePricePort" name="CalculatePricePort">
          <soap:address location="http://130.35.90.150/eai_enu/start.swe?SWEExtSource=SecureWebService&amp;SWEExtCmd=Execute&amp;UserName=XXXX&amp;Password=XXXX"></soap:address>
        </port>
      </service>Note that I took an example where both attributes are not using common format.
    To try to get this working faster, you may want to try to use an existing JAVA (or .Net) client and compare the working payload with what is generated by the UTL_HTTP package. It's usually faster to work of a working sample that to double guess why it's not working.
    Hope it helps,
    -Eric

  • How to use XML Gateway for Order Import and Item Import?

    Hello XML gurus,
    I'm working in Oracle Apps area and do not have much knowledge on XML or web programming. Currently in my project there is a need to use Order Import and Item Import using interface tables and XML Gateway. The items/orders information will be in the XML format from Siebel system, there will be no custom processing...just process the data as-is.
    I've read the XML Gateway user guide but did not understand much.
    Anyone with similar implementation experience?
    I'm looking for a step-by-step guide on what needs to be done in Oracle Apps side to populate the interface tables from XML file and call the import APIs?
    Your inputs, suggestions, tips are highly appreciated. :)
    Thx,
    Jags

    I have a similar requirement to automate the order import and was looking at XML Gateway. Please update if you were able to find more information.
    - Ayyappa

  • ACE XML gateway version 5.1

    Hi, i am configuring a XML gateway 5.1. i have not WSDL file then i create a simple service proxy but does't work. we i try to browse the consumer interface error 500 and log say me “request matched no valid handler or route”. I think i am missing some part of the configuration.
    Friends, can you help me ??
    thanks so much

    I think it won't support. It will support WSDL 1.1 on ACE XML Gateway.
    http://www.cisco.com/en/US/prod/collateral/contnetw/ps5719/ps7314/product_data_sheet0900aecd8060acd2.pdf

  • How to know Transparent gateway version

    dear all,
    Facts:
    WIN 2008 AND MSSQL SERVER 2008
    AIX 5.3 AND ORACLE 10.1
    how i know the version of Oracle Transparent Gateway from :
    - Oracle MS SQL Server 2008
    - Oracle 10.1
    how can i view that ???
    thanks a lot !!!

    Sorry, but it is not really clear what yo mean with:
    how i know the version of Oracle Transparent Gateway from :
    - Oracle MS SQL Server 2008
    - Oracle 10.1
    You can check the vesion of an installed gateway using Oracle Universal Installer which can list which products are installed or you can use opatch lsinventory -detail.
    You can also check the listener - it contains PROGRAM=<executble> and now type the name of the executable on the command line. It will now report which gateway and which version you've installed.
    If you're interested in which gateway can be used - then the only supported release is 11g which is certified with Oracle 10.1.0.5 + an additional gateway compatibility patch.

  • How to find out jre version installed ,using a java program?

    Hello,
    Is there any way to find out the installed JRE version using a java program ?
    The requirement is as follows:
    There is a html page with 4 steps to install a software. each step is a link, which upon clicking does its work.
    the first step is to install jre 1.4.2_11 if its not installed in the system. But how can i find out whether jre 1.4.2_11 is installed or not ?
    Thanks in advance

    For the hell of it... here is a list of properties you can query:
    java.version Java Runtime Environment version
    java.vendor Java Runtime Environment vendor
    java.vendor.url Java vendor URL
    java.home Java installation directory
    java.vm.specification.version Java Virtual Machine specification version
    java.vm.specification.vendor Java Virtual Machine specification vendor
    java.vm.specification.name Java Virtual Machine specification name
    java.vm.version Java Virtual Machine implementation version
    java.vm.vendor Java Virtual Machine implementation vendor
    java.vm.name Java Virtual Machine implementation name
    java.specification.version Java Runtime Environment specification version
    java.specification.vendor Java Runtime Environment specification vendor
    java.specification.name Java Runtime Environment specification name
    java.class.version Java class format version number
    java.class.path Java class path
    java.library.path List of paths to search when loading libraries
    java.io.tmpdir Default temp file path
    java.compiler Name of JIT compiler to use
    java.ext.dirs Path of extension directory or directories
    os.name Operating system name
    os.arch Operating system architecture
    os.version Operating system version
    file.separator File separator ("/" on UNIX)
    path.separator Path separator (":" on UNIX)
    line.separator Line separator ("\n" on UNIX)
    user.name User's account name
    user.home User's home directory
    user.dir User's current working directory

  • How to retrieve the Photoshop version installed using Windows Registry?

    Hi,
    I would like to determine if the installed version is CS4 or higher using the Windows Registry.
    I currently have Photoshop CS4 and CS6 installed on my computer. They appears as follow in the registry:
    [Photoshop CS4] HKEY_LOCAL_MACHINE/SOFTWARE/Adobe/Photoshop/11.0
    [Photoshop CS6] HKEY_LOCAL_MACHINE/SOFTWARE/Adobe/Photoshop/60.0
    Does somebody knows if the folder "number" (50.0?) used for Photoshop 5?
    Also, for example, is it always 60.0 for Photoshop CS6? Even when an update has been installed?
    Best Regards,
    Lionel

    All types of plug-ins can be put in the plug-ins subfoder, either right in that folder itself or in a subfolder of plug-ins of your choosing (usually a better idea).  Photoshop enumerates them all.
    The plug-ins folder location can and should be derived from the registry.  I'm not at my workstation right now so I don't have the specifics handy.
    Of course you need to put 32 bit plug-ins in the 32 bit installation area, and the 64 bit plug-ins in the 64 bit registry.
    The list I provided above is rigorous for versions after Photoshop CS4.
    -Noel

  • How to determine existing firmware version installed?

    Hi - before I brave messing around with firmware upgrades, I want to know if it's necessary! How can I determine what firmware already exists on my WRT54G (v8.2)?  I couldn't find reference to this in any of the help forums or tech support. BTW, I'm using Windows XP Profession OS. Thanks!

    If you have a computer directly connected on the router, launch a browser and type in http://192.68.1.1 leave the username blank and type admin on the password, you can use your password if you have one... then after that, you'll be on the setup screen..you can see the information there
    "The war between heaven and hell depends on the choices we make, and those choices require sacrifice. That's the test"

  • 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,

  • How to find out DART Version ?

    How to Find out DART Version installed in the system ?
    Rgds

    Hello everyone,
    we're currently running DART version 2.5 on R/3-release 5 with patchlevel 17.
    Now I'm wondering if it makes sense to upgrade DART from version 2.5 to version 2.6 even though the 2.6-version is not included in R/3-release 5 until patchlevel 20.
    Kind regards
    Sebastian.
    Edited by: Sebastian Hausen on Jun 23, 2009 1:51 PM

  • How do I choose and then install the correct version of Adobe Flash Player for my machine?

    First thing - My computer -   PROCESSOR: Intel Celeron 450 @2.2 Ghz,  MEMORY: 4GB,  OS:  Windows 7 Home Premium SP1 64 bit,  BROWSER:  IE 9.0.8112.16421
    Everything was hunky-dory until the auto-installer updated my version to the Flash Player 11.2 version and that's when it all went downhill.  As soon as it installed that version, none of the TV networks, news networks or Hulu recognized that I had Adobe Flash Player.  In addition, I could no longer create a blank new tab in IE or use the tools button (the little gear symbol) in the upper right hand of an IE window.  Because of the IE problems, I figured it was a problem with IE and went about searching for a solution in that arena.  I finally found something at Microsoft that helped me determine if it was an IE problem and went through the various steps.  The final step required booting into safemode and trying to replicate the problem.  IE worked fine in safemode so, Microsoft determined the problem had to be with outside influences.
    After several frustrating attempts with other fixes including virus scanning and firewall settings, the problem persisted.  I then un-installed Flash Player per Adobe's instruction and re-installed the recommended 'latest' version.  The problem remained.  So, when all else had failed I did a full system restore to a point over a month ago, which is prior to the occurence of the problem, while at the same time noting which drivers and programs would be affected.  I already had a sneaking suspicion that it was Flash Player because I read the full system requirements for the recommended version that the auto installer was trying to install (see below).  I then began updating everything one at a time to see if any of the windows/software/driver updates had any affect on IE.  None did until I got to the Adobe Flash Player and updated it.
    Now, what I think the problem is:  The auto installer ONLY looks at Operating System and Browser to determine which version of Adobe Flash Player is correct.  In this regard, my machine should use the latest 11.2 version.  HOWEVER, if you look at the full system requirements for the 11.2 versions, you will note that it requires a...... 2.33 Ghz processor!  In this regard, 11.2 is NOT the correct version for my machine as it only has a 2.2 Ghz processor.  And I think therein lies the problem.
    So.  I freely admit that I am not a computer expert and am, in fact, so far removed from ever even contemplating wearing such a title that I'm sure all who read this are sitting in your offices having a good laugh at my expense.  As such, I welcome anyone and everyone to tell me what I've done wrong and how I should go about fixing it.  If my deductions are correct, then could someone please tell me how to choose the correct version for my machine and then tell me how to actually install it on my machine.
    I know that this is a long post and I thank you all for your patience and any help you choose to offer me.

    Mr. Willener,
    Thank you for your reply.
    I did un-install and then re-install per the Adobe recommendations which are what you listed in your reply.  The problem remained until I did a MS Windows restore to a restore point a month or so ago.  The IE problems vanished.  However, now I'm using an outdated and unsupported version that is lower than most of the web pages require for their sites, at least the ones I want to view (they all say I need to upgrade my Flash Player which, when I did, put me in this fix).
    As to:
    Pat Willener wrote:
    Usuallyexasperated wrote:
    it requires a...... 2.33 Ghz processor!
    You can safely ignore that requirement; it is simply not true.
    Why would Adobe post a system requirement of 2.33 Ghz for 11.2 if it simply were not true?
    Message was edited by: Usuallyexasperated

  • How to find out the versions of family pack and mini pack installed?

    There are family pack and mini pack for HRMS.
    How to find out the versions of family pack and mini pack installed
    just by a Unix command or sqlplus Select statement?
    Thanks

    you can get the Minipack version of the products by querying fnd_product_installations or ad_patchdriver_minipks, for family packs you need to query through Metalink, OR if you have u driver file which resides on $AY_TOP/discoverer, looks for the minipacks/familypack version in the driver file.

  • While attempting to install the latest iTunes update, version 10.5.3, I encountered an issue. I was forced to download this update manually which, after restarting my Windows 7, did not install properly. How do I get it to install this update?

    While attempting to install the latest iTunes update, version 10.5.3, I encountered an issue. I was forced to download this update manually which, after restarting my Windows 7, did not install properly. How do I get it to install this update?

    The installer should have gone into your Apple Software Update folder:
    C:\USERS\<user name>\AppData\Local\Apple\Apple Software Update
    Right mouse click the msi file and select INSTALL

Maybe you are looking for

  • Error while starting the weblogic server

    hi all i got the below error while trying to start the weblogic server on windows machine (win2k3-sp1). please suggest me the best way to overcome from this problem. thanks in anticipation. "FATAL ERROR: Exception from System.loadLibrary(smjavaagenta

  • Acrobat 9.4.4 – PDF-Security

    Hi i've create several password protected .pdf-forms my latest one, the client is asking the following: the .pdf is basically an order form, where a representative would fill in fields and then send the .fdf-file to my client. the .pdf has password s

  • Networking problem - after repeated visits websites become unreachable.

    Here's the situation. I am already using SL for a week now, the 10A432 build which now has been released as the retail. When I am browsing, using Firefox 3.5.2 or the latest Safari, and I use i.e. Google several times in a row to find stuff on the ne

  • Cannot Boot Into Archlinux After Install

    I'm trying to install Archlinux on my Lenovo Z570 laptop. I've already installed Windows on this computer, and I'm installing this in another partition I've created (created 3 partitions when I installed Windows with the default Windows tool). I'm us

  • What is the new Cisco Context Directory Agent?

    Hi Everyone. I noticed on the ASA software download page the new Content Directory Agent (~800MB).  I could not find any release notes nor other references from a Google search. http://www.cisco.com/cisco/software/release.html?mdfid=280582808&softwar