10+ Oracle Web applications integrate with OIM

Hi,
We have more than 10 Oracle iAS based web/forms/reports applications in the corp, and some are 9ias R1 and some are 10gR2. Some do not have the OID tied to and some do not have OID. As you know, each oracle ias has its own user repository.
We are asked to integrate all the iAS applications to a central OIM, means one OID to manage all of the user accounts for all the iAS applications. I think the 1st of all we need to bring all to current OAS version 10gR2, then integrate all togather with one OIM(OID). How do we do the integtation? any one could point the relevant document?
TIA

If you need provisioning, your product is OIM. OAM
controls access to web applicationes. If you need to
provision different apps, and each one has its own
user repository, you will need to deploy an OIM
connector for each of them.I have done the integration of OIM 10.1.4.2 with Oracle Apps 11i and now consider on adding other standalone applications such web apps, discoverer to the system. Seems from your answer, we do not need OAM. We only want the accounts managed at the central OIM. Let me know if i am wrong.
Thanks

Similar Messages

  • Oracle Web ADI integrate with Fixed Asset

    Dear All,
    We are doing a test for integrating fixed asset - physical inventory with Oracle Web ADI. We have managed to define the layout and create mapping for Fixed Asset - Physical Inventory, but when it came to create document for fixed asset, it does not have Fixed Asset - Physical Inventory as the integrator in the list. Does anyone know how to add Fixed Asset - Physical Inventory into the list of integrator? If you know how to do it, may you please post me the steps to add it?
    Thank you,
    Daniel

    If you need provisioning, your product is OIM. OAM
    controls access to web applicationes. If you need to
    provision different apps, and each one has its own
    user repository, you will need to deploy an OIM
    connector for each of them.I have done the integration of OIM 10.1.4.2 with Oracle Apps 11i and now consider on adding other standalone applications such web apps, discoverer to the system. Seems from your answer, we do not need OAM. We only want the accounts managed at the central OIM. Let me know if i am wrong.
    Thanks

  • Unable to handle af:selectOneRadio in Oracle ADF to integrate with OIM

    Hi,
    We are trying to integrate ADF form into OIM
    Scenario
    We have 2 radio buttons on the page of type <af:selectOneRadio> 1.Roles,2. Locations which are mutually exclusive
    and there are 2 facetsin a panel
    1. one is "roles listbox" of type <af:selectOneChoice>
    2. second is "locations" of type <af:SelectManyShuttle>
    when i select "roles" radio button following should be enabled
    1. roles listbox of type <af:selectOneChoice>
    when i select "locations" radio button following should be enabled
    2. locations of type <af:SelectManyShuttle>
    we want this page as tabbed one in OIM
    we are getting the below exception when we select the "locations" radio button.Infact, we are unable to achieve the above functionality
    java.lang.NullPointerException: ADF_FACES-60097:For more information, please see the server's error log for an entry beginning with: ADF_FACES-60096:Server Exception during PPR, #1
    pls let us know how to handle this scenario. pls see the code below which we have done in managed bean and jspx page
    The code is given below:
    Managed Bean:
    public void customUserProfileChangeEvent(ValueChangeEvent valueChangeEvent) {
    RichSelectOneRadio radio1 = (RichSelectOneRadio)valueChangeEvent.getSource();
    if (radio1.getValue().equals("1")) {
    RichSelectOneChoice selectOneChoice = (RichSelectOneChoice) FacesContext.getCurrentInstance().getViewRoot().findComponent("soc1");
    RichSelectManyShuttle richSelectManyShuttle=(RichSelectManyShuttle) FacesContext.getCurrentInstance().getViewRoot().findComponent("sms1");
    selectOneChoice.setDisabled(false);
    richSelectManyShuttle.setDisabled(true);
    else
    RichSelectOneChoice selectOneChoice = (RichSelectOneChoice) FacesContext.getCurrentInstance().getViewRoot().findComponent("soc1");
    RichSelectManyShuttle richSelectManyShuttle=(RichSelectManyShuttle) FacesContext.getCurrentInstance().getViewRoot().findComponent("sms1");
    selectOneChoice.setDisabled(true);
    richSelectManyShuttle.setDisabled(false);
    MyProfile.jspx
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:c="http://java.sun.com/jsp/jstl/core">
    <c:set var="customtabsBundle"
    value="#{adfBundle['oracle.iam.examples.customtabs.CustomTabsBundle']}"/>
    <jsp:directive.page contentType="text/html;charset=utf-8"/>
    <af:componentDef>
    <af:panelStretchLayout id="psl1a">
    <f:facet name="center">
    <af:panelGroupLayout id="pgl1" layout="scroll"
    styleClass="AFStretchWidth">
    <af:popup id="popupDialog" contentDelivery="lazyUncached">
    <af:dialog id="message"
    title="#{customtabsBundle.MESSAGE_POPUP_TITLE}"
    titleIconSource="/images/info.png" type="none">
    <af:panelGroupLayout layout="vertical" id="pgl3">
    <af:outputText value="#{profile.popupStatusMessage}" id="ot3"/>
    </af:panelGroupLayout>
    <f:facet name="buttonBar">
    <af:panelGroupLayout layout="horizontal" id="pgl4">
    <af:commandButton text="Ok" id="okButton"
    actionListener="#{profile.hideStatusMessage}"
    partialSubmit="true"/>
    </af:panelGroupLayout>
    </f:facet>
    </af:dialog>
    </af:popup>
    <af:panelTabbed id="dc_pt1" styleClass="AFStretchWidth"
    inlineStyle="height:435px; width:1200px;">
    <af:showDetailItem text="#{customtabsBundle.ATTRIBUTES}"
    id="dc_sdi2" immediate="true">
    <af:panelFormLayout id="dc_pfl1" inlineStyle="height:47px;">
    <af:selectOneRadio label="Request Access By" id="sor1"
    valueChangeListener="#{profile.customUserProfileChangeEvent}"
    autoSubmit="true" value="1">
    <af:selectItem label="Access Role" value="1" id="si1"/>
    <af:selectItem label="Location" value="2" id="si2"/>
    </af:selectOneRadio>
    </af:panelFormLayout>
    <af:panelGroupLayout layout="scroll"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    id="dc_pgl1"
    inlineStyle="width:1172px; height:196px;">
    <af:panelSplitter id="ps1" splitterPosition="206"
    inlineStyle="width:1151px; height:194px;">
    <f:facet name="first">
    <af:selectOneChoice label="Access Role" id="soc1" disabled="false"
    partialTriggers="sor1">
    <af:selectItem label="Role1"
    value="Role1" id="si3"/>
    <af:selectItem label="Role2"
    value="Role1" id="si4"/>
    </af:selectOneChoice>
    </f:facet>
    <f:facet name="second">
    <af:selectManyShuttle label="Location" id="sms1" disabled="true"
    partialTriggers="sor1">
    <af:selectItem label="Location1"
    value="Location1" id="si5"/>
    <af:selectItem label="Location2"
    value="Location2" id="si6"/>
    </af:selectManyShuttle>
    </f:facet>
    </af:panelSplitter>
    </af:panelGroupLayout>
    <af:commandButton text="#{customtabsBundle.APPLY}"
    actionListener="#{profile.updateUserAction}"
    id="dc_cb2"/>
    </af:showDetailItem>
    </af:panelTabbed>
    </af:panelGroupLayout>
    </f:facet>
    </af:panelStretchLayout>
    </af:componentDef>
    </jsp:root>
    Thanks in advance..
    Edited by: Madhavi Panuganti on Jun 20, 2012 4:24 AM

    are u using an RTF template?
    u need to use
    <?html2fo: COLUMN_NAME?>
    instead of <?COLUMN_NAME?> in the RTF template
    http://docs.oracle.com/cd/E23943_01/bi.1111/e22254/create_rtf_tmpl.htm#CHDCEEIJ
    Edited by: anupma.s on Feb 21, 2013 11:12 AM

  • Problems about deploying Oracle web application (Forms, Reports)

    I am going to deploy Oracle web applications (Forms and Reports) and plan to use the same server machine for both Application web server and Database server.
    1. How can I enable SSL (for data encryption) on Application web server for Oracle Forms ?
    2. Since both Application web server and Database server will use the same machine, do I still need Oracle Advanced Security for data transmission between Application web server and Database server if data encryption for transmission is required ?
    3. Can I user Oracle Forms to call Oracle Report on web as I did in Client/Server in the past ?
    Experts like you may have come across such problems. Would you please give me some opinions/ideas ?
    Regards,
    Richard

    1. check the paper about the Forms servlet architecture on otn forms section for SSL tips.
    3. Check the reports and forms integration paper on otn too.

  • One web application - interact with many application

    I need to create web application that will be interact with different applications by different protocols. On the input of this application will be different xml files (commands).The input must be implements as stream input (something like IBM WebSphere Business Integration Connect)
    This web application must be consist from differents modules. Every module do the concrete task. E.g. with file1.xml - web application connect with MS Outlook. With file2.xml - web application connect with some web service and so on.
    What kind of java web technology I can use to create this web application?
    Thanks.

    You can use web service to accept input XML for your application and remaining technology depends upon the nature of target system and your work involved. For example, to consume target system web service you can think of using JAX-WS.

  • BEx Web Application Designer with portal...

    Dear all,
    Right now we are using EP for execution of reports.. till now we have used querydesiner only...
    Now the requirement is to use  BEx Web Application Designer with portal...can anyone give me some idea abt how to connect the EP with  WAD..
    Points will be awarded
    regards
    venu

    Dear Venu,
    Please check this link:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b0a5216a-349c-2a10-9baf-9d4797349f6a
    Regards,
    Ramkumar.

  • Communicate a Web application (Flex) with a mobile Apllication (Flex)

    Hello,
    I wonder if it is possible to communicate a Web application (Flex) with a mobile Apllication (Flex).
    when I Click on a button in my web application I receive an alert in my mobile application.
    if you have any ideas I would be very grateful.
    Regards.

    I tried that but my problem is that the code is so old. At least what I saw. I don't know how old is too old and I'm trying to do things "right." I saw code from 1998, but I don't know if that's still what you do. It might still work, but that doesn't mean it's correct. There's so much out there on Java that so old that half the time I'm not sure what to do because some other technology in J2EE or the latest Java SDK might have come up with a new way to do things. Thanks.

  • PHP/Oracle Web Application Framework

    Hi,
    for people hopping on the Oracle/PHP bandwagon, there's a PHP object oriented Web Application framework that supports Oracle 8.0.5, Oracle 8i, 9i and 10G.
    It's called 'Achievo ATK' and can be found on http://www.achievo.org/atk
    It makes developing a webinterface to an existing Oracle database pretty easy. It boils down to creating PHP classes around the tables, defining the relationships, and an application to manipulate the data (crud) is generated dynamically by the framework.
    To give an example, a complete employee administration application for the 'emp/dept' tables from the scott schema is as much code as:
    <?php
      userelation("atkmanytoonerelation");
      class employee extends atkNode
        function employee()
          $this->atkNode("employee");
          $this->add(new atkAttribute("empno", AF_AUTOKEY));
          $this->add(new atkAttribute("ename",
                                        AF_SEARCHABLE));
          $this->add(new atkManyToOneRelation("deptno",
                             "scott.department",
                             AF_SEARCHABLE));
          $this->setTable("emp");
    ?>
    <?php
      class department extends atkNode
        function department()
          $this->atkNode("department");
          $this->add(new atkAttribute("deptno", AF_AUTOKEY));
          $this->add(new atkAttribute("dname",
                                    AF_SEARCHABLE));
        function descriptor_def()
          return "[dname]";
    ?>The demo application that can be downloaded contains basic emp/dept examples, including the ability to edit a departments employees etc. A slightly different version (including manager link etc.) of the dept/emp example can be found on http://www.achievo.org/atk/demo, lesson 2 in the demo's menu.

    Thanks for letting us know.
    -- CJ

  • How a web application runs with a different realm then default realm

    Is there a way to run my web application with a different custom realm then the default realm of appserver.
    (My custom realm is not the default one)

    Not in S1AS7, unfortunately. You'll need to set your custom realm to be the default for that particular instance.

  • Can you help me?the config error about ORACLE Web Application Server3.0 for Solaris,

    hello anyone
    i install oracle7.3.4 server
    in Sun Sparcstation20 Solaris2.6 Japanese
    everything is ok,
    and i want to install ORACLE
    WEB appliation server 3.0too
    the installer is ok too,
    i startup the serivce
    >owsctl start wrb
    >owsctl start admin
    but when i open the netscape and
    CRAETE and START a new LISTENER
    there is something wrong.
    **************************error message*******
    OWS-05721: The Web Listener www failed to start:
    Oracle Web Listener 3.0.1 Production (Export), Version 2.14FC1
    Copyright 1997 Oracle Corp. All Rights Reserved.
    Error: A failure occurred ( Permission denied ) when assigning a port ( domain: INTERNET01, address: 0.0.0.0, port: 80 ).
    Error: Failed to start the server.
    Error: The server could not initialize
    Information: The server is exiting
    OWS-08811: Unable to startup Oracle Web Listener `www'.
    Oracle Web Listener Home Page
    From here, you can do the following:
    Create a new Oracle Web Listener to run on your machine by clicking the Create Listener... button.
    Modify existing Oracle Web Listeners by selecting the Configure link below.
    Start, Stop or Delete existing Oracle Web Listeners by selecting the appropriate link below.
    can anyone help me , it is too difficult for me.
    the startup file of Solaris is here
    # @(#)cshrc 1.11 89/11/29 SMI
    umask 022
    set path=(/bin /usr/bin /usr/ucb /etc .)
    if ( $?prompt ) then
    set history=32
    endif
    setenv ORACLE_BASE /oracle/app/oracle
    setenv ORACLE_HOME /oracle/app/oracle/product/7.3.4
    setenv ORACLE_SID hlp3
    setenv ORAWEB_HOME $ORACLE_HOME/ows/3.0
    setenv ORAWEB_SITE www
    setenv ORAWEB_BASE $ORACLE_HOME/ows
    setenv ORAWEB_ADMIN $ORACLE_BASE/admin
    setenv ORAWEB_CARTX $ORACLE_HOME/ows/cartx
    setenv DEF_INSTALL TRUE
    setenv ORA_CSM_MODE line
    setenv LD_LIBRARY_PATH $ORACLE_HOME/lib:/usr/openwin/lib:/usr/dt/lib:
    setenv ORACLE_TERM xsun5
    setenv TMPDIR /var/tmp
    setenv PATH .:$ORACLE_HOME/bin:$ORACLE_HOME/obackup/bin:/opt/bin:/usr/local/bin:/bin:/usr/bin:/usr/css/bin:/usr/openwin/bin:/usr/sbin:/usr/ucb:$ORAWEB_HOME/bin
    setenv ORA_NLS32 $ORACLE_HOME/ocommon/nls/admin/data
    setenv DEF_INSTALL TRUE
    setenv MANPATH /opt/SUNWspro/man:/opt/SUNWste/licence_tools/man
    # setenv LANG
    # setenv TWO_TASK
    set ORAENV_ASK = NO
    source /opt/bin/coraenv
    unset ORAENV_ASK
    source /oracle/app/oracle/product/7.3.4/ows/3.0/install/owsenv_csh.sh
    # @(#)local.login 1.3 93/09/15 SMI
    stty -istrip
    # setenv TERM `tset -Q -`
    # if possible, start the windows system. Give user a chance to bail out
    if ( `tty` == "/dev/console" ) then
    if ( $TERM == "sun" &#0124; &#0124; $TERM == "AT386" ) then
    if ( ${?OPENWINHOME} == 0 ) then
    setenv OPENWINHOME /usr/openwin
    endif
    echo ""
    echo -n "Starting OpenWindows in 5 seconds (type Control-C to interrupt)"
    sleep 5
    echo ""
    $OPENWINHOME/bin/openwin
    clear # get rid of annoying cursor rectangle
    logout # logout after leaving windows system
    endif
    endif
    setenv ORACLE_HOME /oracle/app/oracle/product/7.3.4
    setenv PATH /bin:/usr/bin:/etc:/usr/etc:/usr/openwin/bin:/usr/ucb:/oracle/app/oracle/product/734/bin:$ORAWEB_HOME/bin
    setenv NLS_LANG japanese_japan.ja16euc
    setenv LANG japanese
    setenv ORACLE_TERM xsun5
    setenv ORAWEB_HOME $ORACLE_HOME/ows/3.0
    setenv ORAWEB_SITE www
    setenv TNS_ADMIN /oracle/app/oracle/product/7.3.4/network/admin
    can anyone help me and tell me how to solve it or any aother way book doc to do it,
    thank you
    i am very nervious
    my email address:
    [email protected]
    [email protected]

    see http://www.oracle.com/support/products/oas/sparc30/html/ows08811.html

  • Sample code Connection Dbase Oracle 10 g integrate with Crystal Report XI

    help me there any having example [of] code integrate the Crystal Report XI by JSP (Jdev 10.1.3) using Database Oracle 10g ,
    Step [of] what having to me [do/conduct] to making integration of Crystal Report XI by Jdev 10.1.3 with the Database Oracle 10g and What JAR File to setting my JSP for integrate crystal report XI using Oracle 10g.
    I work with Jdev 10.1.3 and OC4J standalone with database oracle 10 g and Crystal Report XI
    please help....

    I would make verify the database within Crystal report and then re publish it again. It seems it doesn't get the connection to the db.
    Have you refreshed the database within Crystal Reports?
    As Graham said, does it open in Crystal Viewer?
    another thing would be to add the DSN (System DSN) onto your client machine as well. Maybe it is not getting a right connection.
    Try it and let us know.
    Kind Regards
    Jehanzeb

  • How can java application integrate with SAP

    i need some help regarding.
    Actually we need a application which should work as standalone also which will be as java application
    and as well as mostly we are preferring that this application should be integrated with SAP system also.
    so please help me...
    Edited by: anant waghmare on Apr 22, 2008 10:45 AM

    If they are on seperate systems (ABAP & JAVA) you need to create a JCO connection

  • Oracle Role Manager integration with OIM

    Hi all
    I need to test installation OIM and ORM products.
    This products was installed on windows platform. My questions are:
    1) How realized connection (integration) between OIM and ORM ???
    2) Where i can search information (documents) over ORM product ???
    Thanks for u time
    Gustavo

    Hi Gustavo,
    Did you able to integrate ORM and OIM? I am getting some database error whcih deploying the integration libarary. Can you please offer me some help on this.
    Debi

  • IS IT ORACLE DATABASE -APPLICATION COMPATIBLE WITH Windows 2008 R2

    Hi ...
    is it Oracle Application Sever 10.1.2 and Oracle Database 10.2.0.4 certified on Windows 2008 or not..
    Thanks in advance...

    Hello,
    So far, no Oracle Database product are certified on Windows 2008 R2.
    For Oracle 10.2, Oracle plans to deliver the Patch set *10.2.0.5* for the third quarter of 2010. It will be certified
    on Windows 2008 R2.
    For more information you may visit the site below:
    http://www.oracle.com/technology/tech/windows/index.html
    Hope this help.
    Best regards,
    Jean-Valentin

  • Oracle Web commerce integration with Seibel

    Hi friends
    Will you please let me now the integration  methodology and steps with Seibel.
    if possible please send me the url from where i can download the pdf
    Thanks
    Sanjay

    Hi,
    When you install SOA suite on your server, then the installer ask you for the type of installation you require. You can choose "J2EE Server,Web Server and SOA Suite" from there.
    Thanks,
    Shanty

Maybe you are looking for