How to Implement SSL with Oracle Applications R12 without using Load Balanc

How to Implement SSL with Oracle Applications R12.1.3 without using Load Balancer

Please refer to (Enabling SSL in Release 12 [ID 376700.1]).
Thanks,
Hussein

Similar Messages

  • How to install and integrate siebel crm with oracle application r12

    Hi,
    i would like to install siebel sales crm on my linux machine and intigrate it with oracle application r12. i need some kind of doc id or metalink id from which i can get all information.Kindly help on the same.
    Thanks,
    Vishal Joshi
    Edited by: Vishal Joshi on Jan 25, 2011 3:15 PM

    Hi,
    Most of these integrations are prebuilt. Look for AIA/PIP.
    If you check out the presentations from OOW there were session on how other customers have done this.
    HTH,
    R
    Robert Ponder
    Lead Architect and Director
    Ponder Pro Serve
    cell: 770.490.2767
    fax: 770.412.8259
    email: [email protected]
    web: www.ponderproserve.com

  • Integration of Oracle Apex with Oracle Applications R12

    How can I integrate Oracle Apex with Oracle Applications R12? The requirement is like by clicking a menu the user will see an apex report without giving again the user name and password. By simple menu attachment it's asking for apex login credentials. But I want it will redirect to the apex page without asking for user name and password.
    Please help.

    Hi,
    Have a look at this thread.
    Installation Procedure for APEX
    Installation Procedure for APEX
    Regards,
    Hussein

  • How to Setup SSL on Oracle Application Server 10g Release 2 (10.1..2)

    Hi All,
    Can anybody tell me How to setup the SSL on Oracle Application Server 10g Release 2 (10.1.2).
    I have all the required documents like
    1. Oracle Application Server Portal Server Configuration Guide.
    2. Oracle Application Server Web Cache Configuration Guide.
    3. Oracle Application Server SSO Administration Guide.
    I tried to follow all this documents but still i am not able to set SSL for Oracle Portal Server.

    The Portal Configuration Guide, available on OTN at http://www.oracle.com/technology/documentation/appserver1012.html does provide some very specific information on how to set up OracleAS Portal.
    Section 6.3.2.1 Configuring SSL for OracleAS Portal describes various configurations, such as:
    SSL to OracleAS Single Sign-On
    SSL to OracleAS Web Cache
    SSL Throughout OracleAS Portal
    External SSL with Non-SSL Within Oracle Application Server
    For larger enterprise configurations, you can refer to the Enterprise Deployment Guide.
    Can you give a bit more background on what you are trying to set up? Which scenario, what sort of hardware, software versions, and so on.
    Regards,
    Pete

  • OPA (Oracle Policy Automation)integration with Oracle Application R12

    Hi,
    We want to know checklist for OPA integration with Oracle Applocations( Ebussiness Suite). It is urgent, Can anybody help us on this.
    It is very urgent. Any one can help us to integrate OPA (Oracle Policy Automation) with R12 Ebs.
    Thanks in advance
    Edited by: Venkat K.V on Sep 7, 2010 2:59 AM

    The OPA team doesn't maintain a check-list of integration steps for EBS, but this should be a pretty standard web services integration using Oracle Determinations Server.
    You might also want to check out this tutorial:
    http://www.oracle.com/technetwork/apps-tech/policy-automation/overview/opa10-4.zip, which shows an example of how to integrate the OPA Oracle Web Determinations component with E-Business Suite.
    Davin Fifield

  • IPM 11g integration with oracle applications R12

    Hi,
    We are in process of setting up first IPM instance for AP invoice processing. I installed all required software and got IPM server up and running. I was following installation guide for integration with applications R12 but it is not detailed enough so opened oracle SR and now analyst himself is saying documentation is not enough and you need to use solution accelarator kit. Oracle's product manger is not giving kit before giving training and there is no training in near future so we are just at full stop at this time. Has anybody done successful install and end to end integration with 11g version without solution kit? Can anybody point me to good detailed documentation?
    I would appreciate any help I can get on this.
    Thanks,
    Jigisha

    Hi
    AP Invoice end to end processing would need to have IPM , EBS , ODC , OFR (if needing to include forms recoginition functionality as well ) .
    This is the outline of the architecture that need to be set up for end to end AP processing .
    Let me look around if there is any documentation which gives further details on this topic .
    Thanks
    Srinath

  • How to implement Master-Detail Search in TopLink without using DataControl

    Hi,
    I am using TopLink and EJB in our requirement. But we are not creating any data controls. Without data controls how to implement master detail search using TopLink and EJB. I did search for a single table. It is working fine. The way i implented is as follows.
    1) Taking search parameter from UI and passing it to A delegator class's method.
    2) Delegator class's method calls the EJB's NamedQuery which i already created using expression builder.
    3) EJB executes the NamedQuery with the parameter we are passing. And it returns the results back to UI.
    But as i am new to TopLink, can anyone tell me the procedure to implement Master - Detail search. Here we need to search based on Master table's column.
    Waiting for the replies regarding this.
    Thanks & Regards,
    Suresh Kethireddy

    Hi,
    I did it successfully. Following is the code.
    Session session = getSessionFactory().acquireSession();
    UnitOfWork uow = session.acquireUnitOfWork();
    ReadAllQuery raq = new ReadAllQuery();
    Dept d = new Dept();
    d.setLoc(loc);
    raq.setExampleObject(d);
    List<Dept> res=(List<Dept>)uow.executeQuery(raq);
    for(int i=0; i<res.size();i++){
    System.out.println("Dept DeptNo ---"+res.get(i).getDeptno());
    System.out.println("Dept DeptName ---"+res.get(i).getDname());
    System.out.println("Dept Location ---"+res.get(i).getLoc());
    List<Emp> eRes=res.get(i).getEmpCollection();
    for(int j=0; j<eRes.size();j++){
    System.out.println(" Emp No ---"+eRes.get(j).getEmpno());
    System.out.println(" Emp Name ---"+eRes.get(j).getEname());
    System.out.println("Emp HireDate ---"+eRes.get(j).getHiredate());
    System.out.println(" Emp Job ---"+eRes.get(j).getJob());
    System.out.println(" Emp Mgr ---"+eRes.get(j).getMgr());
    System.out.println(" Emp Sal ---"+eRes.get(j).getSal());
    But now my question is, i want to search by providing Dept param as well Emp(Which is child table) param also. Is it possible?
    I tried in 2 ways like this.
    1) Emp emp = new Emp();
    emp.setEname(eName);
    dept.addEmp(emp);
    raq.setExampleObject(dept);
    2) Emp e = new Emp();
    e.setEname("ADAMS");
    List<Emp> list = new ArrayList();
    list.add(e);
    d.setEmpCollection(list);
    raq.setExampleObject(d);
    But in both cases i failed to search based on the values i am passing to Emp.
    Is there any other way to achieve my requirement?
    Any help on this is great.
    Thanks & Regards,
    Suresh K

  • Implementation of SSL with Oracle Applications

    Hello
    We have 2 distinct AIX machines.
    On one of it installed single-node OA installation.
    Also the second one has 2-node installation.
    As I understand , for Forms Server and Apache we must use 2 different certificates (note 123718.1)
    I'm little bit confused about it.
    Am I need 2 differ keys for EVERY OA installation on SAME mashine?
    And do I really must have it for EVERY mashine.
    If yes , that's mean that if I have 4 OA's on one machine and the same on second machine ,
    I must have 4x2 + 4x2 = 16 different machines.
    Or the second version of my quesion is , may be I need 2 differ keys per ONE machine , them I can implement
    for every machine ???
    Please help me for clear information.
    Regards

    Please refer to (Enabling SSL in Release 12 [ID 376700.1]).
    Thanks,
    Hussein

  • How to enable SSL in oracle 11i

    HI
    1)How to enable SSL in oracle 11i
    2)How do I make an oralce 11i instance available on the internet
    can some one suggest the procedure and the metalink doc or forums that can be referred to for better understanding and using the applcaitons
    Regrads

    Refer to the following notes:
    Note: 123718.1 - 11i: A Guide to Understanding and Implementing SSL for Oracle Applications
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=123718.1
    Note: 217368.1 - Advanced Configurations and Topologies for Enterprise Deployments of E-Business Suite 11i
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=217368.1
    Note: 229335.1 - Best Practices For Securing Oracle E-Business Suite 11i For Internet Access
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=229335.1

  • Integration of Apex with Oracle Apps R12

    How can I integrate Oracle Apex with Oracle Applications R12? The requirement is like by clicking a menu the user will see an apex report without giving again the user name and password. By simple menu attachment it's asking for apex login credentials. But I want it will redirect to the apex page without asking for user name and password.
    Anyone please tell the step by step procedure of how to integrate apex with oracle apps R12.
    Please help.

    Hi,
    See below my thread this might be of some help to you. We could successfully integrate EBS and OBIEE.
    Logout link missing upon integrating OBIEE 11g with EBS (Not through SSO)
    Thanks,
    Sri

  • Linking Oracle Workflow with Oracle Applications

    Hi All,
    I have created a workflow file using Oracle Workflow Builder but dont know how to link it with Oracle Applications.
    Can someone help me by giving the step by step process involved to link the wft file with my oracle application.
    Thanx in Advance.
    K.K.Prasadh

    Hi
    Things ar not clear .
    If it is new workflow , then you will have to modify the application to use the
    workflow. I do not think you want to do that. You need to set up attributes
    of the workflow and create process using Oracle flow routine.
    If you want modify the existing workflow , You need the open the existing
    workflow and modify without changing the itemtype. If you create a new process
    in this item type the you have to assign the process in Account window
    in Oracle application.
    I hope this will help you.
    Deepak
    [email protected]

  • How to use JavaMail 1.4 with Oracle Application Server 10g (9.0.4.0.0)

    Hi all,
    I'd like to know if it's possible and how to use JavaMail 1.4 with Oracle Application Server 10g (9.0.4.0.0), Windows version.
    With the following code, I can see that the mail.jar used by the server is the one included in the jdk installation :
    // I'm testing InternetAddress.class because I want to use commons-email-1.2.jar that requires mail.jar 1.4 (or higher) and activation.jar 1.1 (or higher)
    // and I know that inside the commons-email-1.2.jar file, I need to call the InternetAddress.validate() method that throws a java.lang.NoSuchMethodError: javax.mail.internet.InternetAddress.validate()V if it is used with mail.jar 1.2.
    Class cls = javax.mail.internet.InternetAddress.class;
    java.security.ProtectionDomain pDomain = cls.getProtectionDomain();
    java.security.CodeSource cSource = pDomain.getCodeSource();
    java.net.URL location = cSource.getLocation();
    System.out.println(location.toString());
    This code returns : file:/C:/oracle/app/jdk/jre/lib/ext/mail.jar and this mail.jar file has an implementation version number: 1.2
    - I've tried to include my own mail.jar (1.4.2) and activation.jar (1.1.1) files in the war file that I deploy, but it doesn't work (the server still uses the same mail.jar 1.2)
    - I've tried to put the mail.jar (1.4.2) and activation.jar (1.1.1) files in the applib directory of my OC4J instance, but it doesn't work (the server still uses the same mail.jar 1.2)
    - I know that a patch exists : I've read the following document: How to Make Libraries such as mail.jar and activation.jar Swappable ? [ID 552432.1]
    This article talks about the Patch 6514136, but this patch only applies to : Oracle Containers for J2EE - Version: 10.1.3.3.0
    Can you please help me ?
    Thanks in advance for your answers,
    Laurent

    I strongly suggest to upgrade to AS 10.1.3 to get this.
    Think of future support of AS 9.0.4. You will get not critical patch updates anymore.
    --olaf                                                                                                                                                                                                                                                                                                               

  • OBIEE 11g with Oracle EBS R12 implementation,Need to know Default Roles

    Hi All,
    Can anyone please let me know regarding any documentation or link where i can find all default OBIEE Group names and the relation of each Groups with Oracle EBS R12 roles and responsibility categorized by the Modules.
    We need the Roles information for the following modules:
    1. Supply Chain & Order Management
    2. Procurement & spend
    3. Finance
    Thanks in advance. Please help.
    Regards
    Sudipta

    Please see these docs.
    Integrating Oracle Business Intelligence Applications with Oracle E-Business Suite [ID 555254.1]
    What documentation do I need to review when installing and configuring a OBI Apps 7.9.6.x environment with EBS? [ID 1221764.1]
    Master Note for OBIEE Integration issues with EBS, Siebel, SSO, Portal Server [ID 1248939.1]
    Oracle SSO E-Business Suite Applications Integration with Oracle Business Intelligence [ID 553423.1]
    Oracle EBS integration with OBIEE [ID 733137.1]
    Document for implementing security OBIEE Apps with EBS and Siebel CRM as sources [ID 756851.1]
    What Application must be chosen for Responsibility within EBS when integrating with OBIEE [ID 1246464.1]
    Also, search Steven Chan's Blog and you should get couple of hits -- http://blogs.oracle.com/stevenChan/
    Thanks,
    Hussein

  • How to copy customer in oracle applications in R12

    how to copy customer in oracle applications in R12

    When I copy (as in original example) 4 cells in Excel, the exact 4 cells paste correctly in another Excel, but on my web it post the 4 cells and then clear the cell below it. So the same data in the clipbord paste correctly into Excel, but incorrectly in the web.
    When I copy (as in original example) 4 cells from the web, the exact 4 cells paste correctly into Excel, and it then post correctly on my web solution.
    So, in summary this is what I find:
    - Copy from web and paste to Excel = no problem
    - Copy from web and paste to web = no problem
    - Copy from Excel and paste to Excel = no problem
    - Copy from Excel and paste to web = problem (first cell below pasted data get cleared)
    We have a SAP NetWeaver BI 7.0 system, I use Bex (WAD) Support pack 7 with Patch 1 and I have Internet Explorer (version 8) - on IE the compatibility view does not make any differance. Users with IE 7 experiance the same issue.

  • How to change IP, Hostname and domain name for Oracle Application R12

    Hi,
    I'm new to Oracle, we used to have one production and one test server for Oracle Application R12, but the test server was corrupted, so we decided to clone production server and create a new test server, after cloning and creation of test server, how should we do to change IP address, hostname and domain name for test server?
    Our production and test server environment is:
    Linux Enterprise AS 2.6.9
    Application module: E-Business Suite Treasury only
    Your advice will be much appreciated.
    Regards,
    Kenneth
    Edited by: 850209 on Apr 7, 2011 5:37 PM

    850209 wrote:
    Hi,
    There are few tnsnames.ora and listener.ora files in the system, how to know which one are effective? If I change tnsnames.ora hostname entry, do I need to change listerner.ora file also?
    Thanks.
    Regard,
    Kenneth.tnsnames.ora is used only by client processes. listner.ora is used only to configure the listener, and that is a server side issue only. In addition, the listener can start without any listener.ora at all, using all default values. See my discussion of tns issues at edstevensdba.wordpress.com
    If you are using dbcontrol, you will most likely need to reconfigure it, using the emca utility.

Maybe you are looking for

  • Database Logon Failed after first report

    I have a Windows Server 2003 x86 server running IIS6 and ASP.NET. On this server, I have two different web forms set up to export Crystal Reports to PDF. My problem is that only one of these reports can run. For example, I open report 1 and can then

  • Controller skin for SWF video in dreamweaver CS3?

    Hi there, I have inserted a SWF video into my website, however right now it's playing automatically and i have no way of stopping and pausing my video... how can I add a skin controller to my SWF file? I know I can do it with FLVs, but I dunno how to

  • Reel-to-reel analog audio effect?

    Hey everyone, I'm working on a spoof of a 1950's PSA, I've watched a few and I noticed a big characteristic of them is that old analog reel-to-reel sound. Does anyone know how to get a similar sound, that kinda stuffy, saturated effect? I'm thinking

  • Editing on more than one computer

    I would like to be able to view and edit my photos in iPhoto/Aperture on several different mac computers.  is there a way to do this?

  • Lifetime in xml forms - final users cannot see available docs

    Hi, I have a News xml forms project integrated with Approval process, and I want to integrate lifetime too. 1) How do I to enable Lifetime?? What I did is the following: I`ve enabled Lifetime in the folder containing the docs, and I setup manually th