OES 11g R2 Branding

Hi,
I am trying for Branding in OES 11g R2. I am following the Oracle Documentation.
I am struck in the redeployment of the changes. Where i need to redeploy?? Need to deploy in Weblogic or it is restart of the APM Managed Server??
Thanks,
Sandeep D.
Edited by: Sandy on Sep 13, 2012 12:36 AM

Everything is deployed in weblogic as ear or war file. Check deployments section, find your ear/war location, go to that location, take backup of existing file and replace your file, deploy it. Restart server.
regards,
GP

Similar Messages

  • Intallation of 11g in Brand New server

    Hi Gurus,
    This is the first time i am installing the 11g on Brand new Windows 2008 64 bit server. I need help and info what are the prerequist i need to have and start the OBIEE 11g installation on the Windows 2008 64 bit server.
    It is brand new server nothing installed exccept the Operating system in that.
    Regards
    Ali

    Ali,
    There were several people who have experience this exact scenario as you explained.
    Many overcame this by simply stopping the installation and restarting it. Most say that the second time through that it completed the installation without a problem.
    I personally have installed OBI 11g 30+ times at this point and I am a bit superstitious when it comes to a Windows install. I believe that moving the cursor every few minutes during the OBI 11g installation prevents the freeze-up. I know, I know... but I've had it freeze up once or twice and now on a Windows install when I do that it hasn't frozen up since. Very scientific, right?
    Also, you mentioned that you installed 11gR2 but did you set the loopback apdapter properly if the DB is on the same machine you were conducting the installation on?
    Cheers,
    Christian
    http://www.artofbi.com

  • OES 11g policies import error

    Hi All,
    I have exported all application policies using migrateSecurityStore from OES 11g DEV env. I want to import to new OES 11g env using migrateSecurityStore command. When I import it into new OES env, I am getting following exception.
    oracle.security.jps.service.policystore.PolicyStoreIncompatibleVersionException: JPS-06100: Policy Store version 11.0 and Oracle Platform Security Services Version 11.1.1.5.0 are not compatible.
    at oracle.security.jps.internal.policystore.ldap.LdapPolicyStore.getAdminManager(LdapPolicyStore.java:1267)
    at oracle.security.jps.internal.tools.utility.util.JpsHelper.isEmptyPolicyStore(JpsHelper.java:367)
    at oracle.security.jps.internal.tools.utility.destination.apibased.JpsDstPolicy.<init>(JpsDstPolicy.java:337)
    at oracle.security.jps.internal.tools.utility.destination.JpsInitializerDst.getDestinations(JpsInitializerDst.java:84)
    at oracle.security.jps.internal.tools.utility.JpsUtility.<init>(JpsUtility.java:63)
    at oracle.security.jps.internal.tools.utility.JpsUtilBackupRestorePolicyImpl.restoreAllPolicyData(JpsUtilBackupRestorePolicyImpl.java:119)
    at com.ticketmaster.platform.identity.importOES.OESImport.importXML(OESImport.java:53)
    at com.ticketmaster.platform.identity.importOES.OESImport.main(OESImport.java:147)
    Please let me know if you have any clue. Please note that this is very urgent. Any help is very much appreciated.
    Thanks
    Mahendra.

    Hi Mahendra,
    I am getting the same error and wonder if you have gotten a resolution for this.
    thanx
    David
    [email protected]

  • Can anyone tell me the difference between OES 11g R1 and OES 11g R2

    Can anyone tell me the difference between OES 11g R1 and OES 11g R2
    What are the new features and updates are done in OES 11g R2. If there is any link plz provide me

    OES11gR2 -> http://docs.oracle.com/cd/E37472_01/admin.1112/e27153/intro.htm#CHDICEIG
    OES11gR1 -> http://docs.oracle.com/cd/E21764_01/doc.1111/e14096/intro.htm#CHDICEIG
    Regards,
    Vishnu Mahajan

  • URGENT: OES 11g Policy Management API Query

    We are working on OES 11g environment. We have a requirement to create Application/Resoruce Types/Resources/POlicies (using a custom built UI) using OES Policy API. We are referring the OES Developer Guide http://docs.oracle.com/cd/E21764_01/security.1111/e14097/cons_policy_prog.htm#CHDFFDDI
    We have tried creating an application using the below code snippet and it code is executing fine. To test it, we executed create application code and it threw error as duplicate as shown below.
    oracle.security.jps.service.policystore.PolicyObjectAlreadyExistsException: Cannot create application policy context "Trading".
    However the OES Admin console does not have the application created through java code. We have copied jps-config.xml and system-jazn-data.xml to the eclipse project where we are running the java code.
    Do we need to add any other files/make anyother changes to the environment to have the policies/applications created through API reflects in OES Admin console?
    Please help. It is very urgent.

    Try a jps-config.xml like this:
    <?xml version="1.0" encoding="UTF-8" standalone='yes'?>
    <jpsConfig xmlns="http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd" schema-major-version="11" schema-minor-version="1">
    <property name="oracle.security.jps.jaas.mode" value="off"/>
    <serviceProviders>
    <serviceProvider name="policy.rdbms" type="POLICY_STORE" class="oracle.security.jps.internal.policystore.OPSSPolicyStoreProvider" >
    <property name="policystore.type" value="DB_ORACLE" />
    </serviceProvider>
    </serviceProviders>
    <serviceInstances>
    <serviceInstance provider="policy.rdbms" name="policystore.rdbms">
    <property name="jdbc.driver" value="oracle.jdbc.driver.OracleDriver"/>
    <property name="jdbc.url" value="jdbc:oracle:thin:@localhost:1521:orcl"/>
                   <property name="jdbc.user" value="DEV_APM"/>
                   <property name="jdbc.password" value="Passw0rd1"/>
                   <property name="root.dn" value="cn=oes_domain,cn=JPSContext,cn=jpsroot"/>
    </serviceInstance>
    </serviceInstances>
    <jpsContexts default="default">
    <jpsContext name="default">
                   <serviceInstanceRef ref="policystore.rdbms"/>
    </jpsContext>
    </jpsContexts>
    </jpsConfig>
    And update the jdbc connection values appropriately for your system.
    Note that this is an insecure way because the password is stored inside this config file in plain text. A better way is to put the password into the wallet, but this should get you started.
    Once you got this working you can replace the user and password properties with the following:
    <property value="oes_sm_key" name="bootstrap.security.principal.key"/>
    <property value="oes_sm_map" name="bootstrap.security.principal.map"/>
    and copy the wallet (cwallet.sso) file

  • OES 11g

    Hi All,
    I am new to OES. i am trying to create custom authorization policy for OIM 11g.
    can any body provide me the steps to integrate OIM and OES ..?
    Thank you

    if it is how to operate then look at below example:
    scenario:The certain Group/Role members should view only limited number of user attributes.
    soln:
    You need search the user-management policies and then update the deniedAttributeObligation in those policies and add all the attributes that you don’t want to be displayed for the user(as per the oes-policy application role.)
    --nayan                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • OES 11g:  Java API to access policy store

    Hello
    I am trying to use the OES Java APIs to create application policies.
    My OES server is running on a server, and I'm trying to develop the policies on JDeveloper on my workstation. Policy store is in an Oracle DB. I've copied the jps-config.xml file from the server, and reference it in my JDev project.
    How do I create a connection to the Policy store to be able to use the oracle.security.jps.service.policystore interfaces?
    Do I have to go through creating a JpsContextFactory to get to the policy store? If I'm using the JpsContext, then how can I acquire it for the server instance of OES, and not a local (in JDev instance?) Or, is there somewhere I can set the connection strings for the DB policy store to allow me to get directly to the store?
    Thank you.

    Try a jps-config.xml like this:
    <?xml version="1.0" encoding="UTF-8" standalone='yes'?>
    <jpsConfig xmlns="http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd" schema-major-version="11" schema-minor-version="1">
    <property name="oracle.security.jps.jaas.mode" value="off"/>
    <serviceProviders>
    <serviceProvider name="policy.rdbms" type="POLICY_STORE" class="oracle.security.jps.internal.policystore.OPSSPolicyStoreProvider" >
    <property name="policystore.type" value="DB_ORACLE" />
    </serviceProvider>
    </serviceProviders>
    <serviceInstances>
    <serviceInstance provider="policy.rdbms" name="policystore.rdbms">
    <property name="jdbc.driver" value="oracle.jdbc.driver.OracleDriver"/>
    <property name="jdbc.url" value="jdbc:oracle:thin:@localhost:1521:orcl"/>
                   <property name="jdbc.user" value="DEV_APM"/>
                   <property name="jdbc.password" value="Passw0rd1"/>
                   <property name="root.dn" value="cn=oes_domain,cn=JPSContext,cn=jpsroot"/>
    </serviceInstance>
    </serviceInstances>
    <jpsContexts default="default">
    <jpsContext name="default">
                   <serviceInstanceRef ref="policystore.rdbms"/>
    </jpsContext>
    </jpsContexts>
    </jpsConfig>
    And update the jdbc connection values appropriately for your system.
    Note that this is an insecure way because the password is stored inside this config file in plain text. A better way is to put the password into the wallet, but this should get you started.
    Once you got this working you can replace the user and password properties with the following:
    <property value="oes_sm_key" name="bootstrap.security.principal.key"/>
    <property value="oes_sm_map" name="bootstrap.security.principal.map"/>
    and copy the wallet (cwallet.sso) file

  • Having issue with OEG (11.1.1.6.1) and OES (11.1.1.5) integration

    Hi,
    I have installed latest OEG release (11.1.1.6) and OES 11.1.1.5, followed the instructions in the OEG and OES integration guide to create a policy that delegates authorization to OES through OES 11g Authorization filter.
    Before testing the OEG policy, I created a OES11g authorization policy on OES Admin Server, and used a simple Java application to invoke authorization decisions successfully. But when testing the OEG policy from Service Explorer, I got the an error, and below is the trace stack:
    DATA     3/19/12 17:49:15.186     trace transaction
    DEBUG     3/19/12 17:49:15.186     add header Host:localhost:8080
    DEBUG     3/19/12 17:49:15.186     add header Authorization:Basic d2VibG9naWM6d2VsY29tZTE=
    DEBUG     3/19/12 17:49:15.186     add header SOAPAction:"http://startvbdotnet.com/web/Add"
    DEBUG     3/19/12 17:49:15.186     add header User-Agent:Gateway
    DEBUG     3/19/12 17:49:15.186     incoming content-length: 344
    DEBUG     3/19/12 17:49:15.186     add header Connection:close
    DEBUG     3/19/12 17:49:15.186     add header X-CorrelationID:Id-854f5ea44f67a9db01190000 1
    DEBUG     3/19/12 17:49:15.186     add header Content-Type:text/xml; charset="utf-8"
    DEBUG     3/19/12 17:49:15.186     Incoming HTTP request: method=POST, host=(unset), port=(unset), path=/, query=(unset), version=1.1
    DATA     3/19/12 17:49:15.186     Firewall resolved uri '/' against '/'
    DATA     3/19/12 17:49:15.186     Firewall failed to resolve uri '/' against '/healthcheck'
    DEBUG     3/19/12 17:49:15.186     using handler at /
    DEBUG     3/19/12 17:49:15.186     Adding MessageListener: com.vordel.circuit.FilterPathTracker@f0f11b8
    DEBUG     3/19/12 17:49:15.186     Adding MessageListener: com.vordel.reporting.rtm.RealtimeMonitoring$1$1@70c7c57c
    DEBUG     3/19/12 17:49:15.187     handle type text/xml with factory class com.vordel.mime.XMLBody$Factory
    DEBUG     3/19/12 17:49:15.187     Adding MessageListener: com.vordel.dwe.http.HTTPMessageListener@5200089
    DEBUG     3/19/12 17:49:15.187     Circuit reference [Global Request Policy] is not enabled - ignoring
    DEBUG     3/19/12 17:49:15.187     Circuit reference [Custom Request Policy] is not enabled - ignoring
    DEBUG     3/19/12 17:49:15.187     Circuit reference [Path Specific Policy] valid and enabled - calling
    DEBUG     3/19/12 17:49:15.188     run circuit "OES11g Authorization "...
    DEBUG     3/19/12 17:49:15.188     run filter [HTTP Basic] {
    DEBUG     3/19/12 17:49:15.188     VordelRepository.checkCredentials: username=weblogic
    DEBUG     3/19/12 17:49:15.188     } = 1, filter [HTTP Basic]
    DEBUG     3/19/12 17:49:15.188     Filter [HTTP Basic] completes in 0 milliseconds.
    DEBUG     3/19/12 17:49:15.188     run filter [11g Authorization] {
    DEBUG     3/19/12 17:49:15.188     creating subject from 'weblogic'
    DEBUG     3/19/12 17:49:15.197     checking 'write' to resource: HelloOESworld/MyResourceType/MyResource
    DEBUG     3/19/12 17:49:15.262     parsing XML body from input stream of type sun.net.www.protocol.jar.JarURLConnection$JarURLInputStream. ContentSource is of type java InputStream
    DATA     3/19/12 17:49:15.263     getting class javax.xml.xpath.XPath with classLoader.loadClass()
    DATA     3/19/12 17:49:15.263     loaded class javax.xml.xpath.XPath
    DATA     3/19/12 17:49:15.263     getting class javax.xml.xpath.XPathConstants with classLoader.loadClass()
    DATA     3/19/12 17:49:15.263     loaded class javax.xml.xpath.XPathConstants
    DATA     3/19/12 17:49:15.263     getting class javax.xml.namespace.QName with classLoader.loadClass()
    DATA     3/19/12 17:49:15.263     loaded class javax.xml.namespace.QName
    DEBUG     3/19/12 17:49:15.277     parsing XML body from input stream of type java.io.FileInputStream. ContentSource is of type java InputStream
    DATA     3/19/12 17:49:15.278     getting class javax.xml.namespace.NamespaceContext with classLoader.loadClass()
    DATA     3/19/12 17:49:15.279     loaded class javax.xml.namespace.NamespaceContext
    DEBUG     3/19/12 17:49:15.744     parsing XML body from input stream of type sun.net.www.protocol.jar.JarURLConnection$JarURLInputStream. ContentSource is of type java InputStream
    DEBUG     3/19/12 17:49:15.774     parsing XML body from input stream of type sun.net.www.protocol.jar.JarURLConnection$JarURLInputStream. ContentSource is of type java InputStream
    DEBUG     3/19/12 17:49:15.845     } = 2, filter [11g Authorization]
    DEBUG     3/19/12 17:49:15.845     Filter [11g Authorization] completes in 657 milliseconds.
    DEBUG     3/19/12 17:49:15.845     ..."OES11g Authorization " complete.
    DATA     3/19/12 17:49:15.846     getting class com.vordel.reporting.rtm.api.MetricTypeRangeCount with classLoader.loadClass()
    DATA     3/19/12 17:49:15.846     loaded class com.vordel.reporting.rtm.api.MetricTypeRangeCount
    DATA     3/19/12 17:49:15.847     getting class java.lang.Throwable with classLoader.loadClass()
    DATA     3/19/12 17:49:15.847     loaded class java.lang.Throwable
    DATA     3/19/12 17:49:15.848     getting class com.vordel.system.NativeOutputStream with classLoader.loadClass()
    DATA     3/19/12 17:49:15.849     loaded class com.vordel.system.NativeOutputStream
    DATA     3/19/12 17:49:15.849     getting class com.vordel.system.NativeOutputStream with classLoader.loadClass()
    DATA     3/19/12 17:49:15.849     loaded class com.vordel.system.NativeOutputStream
    DATA     3/19/12 17:49:15.849     getting class java.io.PrintStream with classLoader.loadClass()
    DATA     3/19/12 17:49:15.849     loaded class java.io.PrintStream
    ERROR     3/19/12 17:49:15.850     java exception running circuit: java.lang.RuntimeException: oracle.security.jps.service.policystore.PolicyStoreException: JPS-10619: Failed to initialize cipher for local cache encryption/decryption. at oracle.security.jps.az.internal.runtime.encryption.CipherServiceFactory.getService(CipherServiceFactory.java:61) at oracle.security.jps.az.internal.runtime.pd.receiver.UpdatePolicySet.initCipherService(UpdatePolicySet.java:211) at oracle.security.jps.az.internal.runtime.pd.receiver.UpdatePolicySet.<init>(UpdatePolicySet.java:139) at oracle.security.jps.az.internal.runtime.service.PDPServiceImpl.initializeControlledPD(PDPServiceImpl.java:296) at oracle.security.jps.az.internal.runtime.service.PDPServiceImpl.initial(PDPServiceImpl.java:368) at oracle.security.jps.az.internal.runtime.service.PDPServiceImpl.<init>(PDPServiceImpl.java:268) at oracle.security.jps.az.internal.runtime.provider.PDPServiceProvider.getInstance(PDPServiceProvider.java:89) at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.findServiceInstance(ContextFactoryImpl.java:139) at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.getContext(ContextFactoryImpl.java:170) at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.getContext(ContextFactoryImpl.java:191) at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:132) at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:159) at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:165) at oracle.security.jps.openaz.pep.PepRequestFactoryImpl.<init>(PepRequestFactoryImpl.java:123) at oracle.security.jps.openaz.pep.PepRequestFactoryImpl.getPepRequestFactory(PepRequestFactoryImpl.java:113) at com.vordel.circuit.oracle.oeseleveng.OES11GAuthZProcessor.invoke(OES11GAuthZProcessor.java:76) at com.vordel.circuit.InvocationEngine.invokeFilter(InvocationEngine.java:154) at com.vordel.circuit.InvocationEngine.invokeCircuit(InvocationEngine.java:43) at com.vordel.circuit.InvocationEngine.processMessage(InvocationEngine.java:229) at com.vordel.circuit.SyntheticCircuitChainProcessor.invoke(SyntheticCircuitChainProcessor.java:36) at com.vordel.dwe.http.HTTPPlugin.invokeDispose(HTTPPlugin.java:290) at com.vordel.dwe.http.HTTPPlugin.invoke(HTTPPlugin.java:131) Caused by: oracle.security.jps.service.policystore.PolicyStoreException: JPS-10619: Failed to initialize cipher for local cache encryption/decryption. at oracle.security.jps.az.internal.runtime.encryption.AESCipherImpl.retrieveRawKey(AESCipherImpl.java:140) at oracle.security.jps.az.internal.runtime.encryption.AESCipherImpl.getKey(AESCipherImpl.java:184) at oracle.security.jps.az.internal.runtime.encryption.AESCipherImpl.<init>(AESCipherImpl.java:87) at oracle.security.jps.az.internal.runtime.encryption.CipherServiceFactory.getService(CipherServiceFactory.java:59) ... 21 more
    DEBUG     3/19/12 17:49:15.850     add header Content-Type:text/plain
    DEBUG     3/19/12 17:49:15.850     add header Server:
    DEBUG     3/19/12 17:49:15.850     send prologue: content length -1
    DEBUG     3/19/12 17:49:15.850     peer can do chunking
    DEBUG     3/19/12 17:49:15.850     add header Transfer-Encoding:chunked
    DEBUG     3/19/12 17:49:15.850     reused connection 0x2b72480 1 times
    Am I missing something? Please help.

    Hello,
    I too am facing the same error. The environment details are as follows:
    OS: Win2k8 64 bit
    OEG: 11.1.1.6.1
    OES: 11.1.1.5
    OES Client: 11.1.1.5
    I have also applied the patch 12917515 to OES (both server and client). This patch contains 2 sub-folders [APM and OES]. I have installed the OES sub-folder patch only.
    Steps: I followed the steps as mentioned in OEG-OES 11g integration guide: http://www.oracle.com/technetwork/middleware/id-mgmt/oes11g-integration-guide-1520074.pdf
    Note: Instead of using a HTTP Basic filter, I set the "authentication.subject.id" attribute manually and then call "OES 11g Authorization" filter.
    Issue,
    The following exception is thrown when the authorization filter runs,
    java exception running circuit: java.lang.RuntimeException: oracle.security.jps.service.policystore.PolicyStoreException: JPS-10619: Failed to initialize cipher for local cache encryption/decryption. at oracle.security.jps.az.internal.runtime.encryption.CipherServiceFactory.getService(CipherServiceFactory.java:61) at oracle.security.jps.az.internal.runtime.pd.receiver.UpdatePolicySet.initCipherService(UpdatePolicySet.java:211) at oracle.security.jps.az.internal.runtime.pd.receiver.UpdatePolicySet.<init>(UpdatePolicySet.java:139) at oracle.security.jps.az.internal.runtime.service.PDPServiceImpl.initializeControlledPD(PDPServiceImpl.java:296) at oracle.security.jps.az.internal.runtime.service.PDPServiceImpl.initial(PDPServiceImpl.java:368) at oracle.security.jps.az.internal.runtime.service.PDPServiceImpl.<init>(PDPServiceImpl.java:268) at oracle.security.jps.az.internal.runtime.provider.PDPServiceProvider.getInstance(PDPServiceProvider.java:89) at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.findServiceInstance(ContextFactoryImpl.java:139) at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.getContext(ContextFactoryImpl.java:170) at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.getContext(ContextFactoryImpl.java:191) at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:132) at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:159) at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:165) at oracle.security.jps.openaz.pep.PepRequestFactoryImpl.<init>(PepRequestFactoryImpl.java:123) at oracle.security.jps.openaz.pep.PepRequestFactoryImpl.getPepRequestFactory(PepRequestFactoryImpl.java:113) at com.vordel.circuit.oracle.oeseleveng.OES11GAuthZProcessor.invoke(OES11GAuthZProcessor.java:76) at com.vordel.circuit.InvocationEngine.invokeFilter(InvocationEngine.java:154) at com.vordel.circuit.InvocationEngine.invokeCircuit(InvocationEngine.java:43) at com.vordel.circuit.InvocationEngine.processMessage(InvocationEngine.java:229) at com.vordel.circuit.SyntheticCircuitChainProcessor.invoke(SyntheticCircuitChainProcessor.java:36) at com.vordel.dwe.http.HTTPPlugin.invokeDispose(HTTPPlugin.java:290) at com.vordel.dwe.http.HTTPPlugin.invoke(HTTPPlugin.java:131) Caused by: oracle.security.jps.service.policystore.PolicyStoreException: JPS-10619: Failed to initialize cipher for local cache encryption/decryption. at oracle.security.jps.az.internal.runtime.encryption.AESCipherImpl.retrieveRawKey(AESCipherImpl.java:140) at oracle.security.jps.az.internal.runtime.encryption.AESCipherImpl.getKey(AESCipherImpl.java:184) at oracle.security.jps.az.internal.runtime.encryption.AESCipherImpl.<init>(AESCipherImpl.java:87) at oracle.security.jps.az.internal.runtime.encryption.CipherServiceFactory.getService(CipherServiceFactory.java:59) ... 21 more
    Is there any other patch required to make OEG work with OES 11g ? How to resolve this error ?
    Any help will be greatly appreciated.
    Regards.

  • Oracle Entitlement Server 11g Learning Turorial?

    Hi All,
    can somebody point me the OES 11g learning tutorial if it is available, please?
    Thanks,
    Mahendra.

    You can see it here http://docs.oracle.com/cd/E21764_01/doc.1111/e14096/toc.htm
    regards,
    Gyan

  • OIM-OES integration

    Hi all,
    can anybody gelp me with integrating (OIM 11g and OES 11g) or (OAM 11g and OES 11g ).please provide me the document that describe the integration steps.
    Thank you.

    Can you give more information on your use case. BTW, you should look at attending OES training, this will give you a good high level picture as well as hands on experience.
    Bye,
    Subbu Devulapalli
    *My Blog: [url http://accessmanagement.wordpress.com/]Authorization for the Real World*
    *Follow me on [url https://twitter.com/#!/BloggerSubbu]Twitter*

  • Compare weblogic SM and webservice SM in OES

    Can you please tell me which one is the better one between the weblogic SM and webservices SM in OES.
    If you have any link which will explains the difference please let me know

    I presume you're talking about OES 11g. WebService SM has some limitations. I would advise to go with WebLogic SM and deploy webservice application in WebLogic Server and play with it.
    HTH.
    -Mahendra.

  • OEG and OES integration - 11g Authorization filter and XACML

    Experts,
    I have installed OEG 11.1.1.6 and OES 11.1.1.5 initially i tried delgating the OEG authorization to OES through 11g Authorization filter but it failed. latter i tried with XACML Filter. i see the everything in backend happening fine (OEG trace file - DATA mode) but i always get a DENY response within XACML Soap response. what could be the possible reasons.
    and Plz let me how i do i set a log file for OES WS SM. I dont see anythin helpful in the OES logs.
    Let me know any doc or guide which can help me to do a integration btw OEG and OES
    thanks

    Can you give more information on your use case. BTW, you should look at attending OES training, this will give you a good high level picture as well as hands on experience.
    Bye,
    Subbu Devulapalli
    *My Blog: [url http://accessmanagement.wordpress.com/]Authorization for the Real World*
    *Follow me on [url https://twitter.com/#!/BloggerSubbu]Twitter*

  • 11g R2 OES - OAM Integration Documentation Link

    Hi,
    Can some one post the link for OES and OAM 11g R2 integration Documentation?
    Thanks in Advance,
    Sandy.

    11gR1 was using OES already for its policies so in this regard, nothing much has changed for R2 with respect to how they integrate. However, there is a big difference in that in R1, OAM had an embedded OES based on OES10g wheras OAM in R2 is using OES11g. This means you get more control of OES via the apm and other interfaces.

  • Branding of OAM 11g R1

    I want to do branding of OAM. Is this possible in OAM 11g.
    Because i am not able to find any doc for this.Please help me on this.

    Take a look on this link.
    http://www.iamidm.com/2012/11/oam-11g-r2-lab-7-change-oracle-logos-in.html
    - Ganesh
    Note:
    If you find my answer is helpful, then kindly mark this post as 'Helpful Answer'
    If you find my answer is correct, then kindly mark this post as 'Correct Answer'

  • Error while running ./ua in linux server to upgrade obiee 11g

    HI,
    I ran upgrade assistant(middleware/OracleBi1/bin/$./ua) in linux server and got below error
    [2012-08-08T14:17:54.975-04:00] [Framework] [NOTIFICATION] [] [upgrade.Framework] [tid: 10] [ecid: 0000J^7TGkG7m3L5MRO5ye1G8epI000001,0] Java class path: /opt/oinstall/middleware/Oracle_BI1/bifoundation/jlib/biconfigmbeans.jar:/opt/oinstall/middleware/Oracle_BI1/bifoundation/jlib/biconfigmbeans-metaobjs.jar:/opt/oinstall/middleware/Oracle_BI1/bifoundation/admin/provisioning/adminservicesmbeans.jar:/opt/oinstall/middleware/Oracle_BI1/bifoundation/jlib/oracle-bi-public.jar:/opt/oinstall/middleware/Oracle_BI1/bifoundation/jlib/oracle-bi-shared.jar::/opt/oinstall/middleware/oracle_common/modules/oracle.jps_11.1.1/jps-common.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.jps_11.1.1/jps-manifest.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.jps_11.1.1/jps-ee.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.jps_11.1.1/jps-mbeans.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.jps_11.1.1/jacc-spi.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.jps_11.1.1/jps-platform.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.jps_11.1.1/jps-unsupported-api.jar:/opt/oinstall/middleware/Oracle_BI1/bifoundation/admin/provisioning/bisecurityprovision.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.odl_11.1.1/ojdl.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.dms_11.1.1/dms.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.bali.share_11.1.1/share.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.ldap_11.1.1/ldapjclnt11.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.xdk_11.1.0/xmlparserv2.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.jps_11.1.1/jps-manifest.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.iau_11.1.1/fmw_audit.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.jmx_11.1.1/jmxframework.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.jmx_11.1.1/jmxspi.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.pki_11.1.1/oraclepki.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.osdt_11.1.1/osdt_core.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.osdt_11.1.1/osdt_cert.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.idm_11.1.1/identitystore.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.ldap_11.1.1/ojmisc.jar:/opt/oinstall/middleware/modules/javax.management.j2ee_1.0.jar:/opt/oinstall/middleware/Oracle_BI1/upgrade/jlib/com.oracle.ws.http_client_1.1.0.0.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.help_5.0/help-share.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.help_5.0/ohj.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.help_5.0/oracle_ice.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.jps_11.1.1/jps-wls.jar:/opt/oinstall/middleware/Oracle_BI1/ovd/jlib/vde.jar:/opt/oinstall/middleware/wlserver_10.3/server/lib/weblogic.jar:/opt/oinstall/middleware/wlserver_10.3/server/lib/consoleapp/APP-INF/lib/commons-codec-1.3.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.osdt_11.1.1/osdt_xmlsec.jar::/opt/oinstall/middleware/Oracle_BI1/jlib/netcfg.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/ua.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/mrua.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/netua.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/modplsqlua.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/portalua.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/dipua.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/webcacheua.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/ohsua.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/ovdua.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/discoua.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/formsua.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/reportsua.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/oifua.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/odiua.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/biua.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/oamua.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/oimua.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/oaamua.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/ucmua.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/bipua.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/modules/oracle.jps_11.1.1/jps-api.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/modules/oracle.idm_11.1.1/identitystore.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/ojdl.jar:/opt/oinstall/middleware/Oracle_BI1/odi_misc/wlclient.jar:/opt/oinstall/middleware/Oracle_BI1/odi_misc/ojmisc.jar:/opt/oinstall/middleware/Oracle_BI1/odi_misc/dms.jar:/opt/oinstall/middleware/Oracle_BI1/odi_misc/help-share.jar:/opt/oinstall/middleware/Oracle_BI1/odi_misc/ohj.jar:/opt/oinstall/middleware/Oracle_BI1/odi_misc/oracle_ice.jar:/opt/oinstall/middleware/Oracle_BI1/odi_misc/xmlparserv2.jar:/opt/oinstall/middleware/Oracle_BI1/odi_misc/share.jar:/opt/oinstall/middleware/Oracle_BI1/odi_misc/fmwgenerictoken.jar:/opt/oinstall/middleware/Oracle_BI1/odi_misc/wlinformix.jar:/opt/oinstall/middleware/Oracle_BI1/odi_misc/wlsybase.jar:/opt/oinstall/middleware/Oracle_BI1/odi_misc/wldb2.jar:/opt/oinstall/middleware/Oracle_BI1/odi_misc/wlsqlserver.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/ant-commons-net.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/bsf.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/bsh-2.0b2.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/commons-beanutils-1.7.0.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/commons-collections-3.2.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/commons-io-1.2.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/commons-lang-2.2.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/commons-logging-1.1.1.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/eclipselink.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/ess.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/javolution.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/odi-core.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/oracle.ucp_11.1.0.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/persistence.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/spring-beans.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/spring-context.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/spring-core.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/spring-dao.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/spring-jdbc.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/spring-jpa.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/trove.jar:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib:/opt/oinstall/middleware/Oracle_BI1/oracledi.sdk/lib/hsqldb.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/PortalPlugin.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/PcPlugin.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/BIPlatformPlugin.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/RtdPlugin.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/OaamPlugin.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/UcmPlugin.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/UrmPlugin.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/OimPlugin.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/OdiPlugin.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/OidPlugin.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/DiscovererPlugin.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/MrcVersionPlugin.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/postgresql-8.4-701.jdbc4.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.jrf_11.1.1/fmwgenerictoken.jar:/opt/oinstall/middleware/oracle_common/modules/datadirect_4.1/wlsqlserver.jar:/opt/oinstall/middleware/oracle_common/modules/datadirect_4.1/wldb2.jar:/opt/oinstall/middleware/oracle_common/modules/datadirect_4.1/wlsybase.jar:/opt/oinstall/middleware/oracle_common/modules/datadirect_4.1/wlinformix.jar:/opt/oinstall/middleware/oracle_common/modules/mysql-connector-java-commercial-5.1.17/mysql-connector-java-commercial-5.1.17-bin.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.jrf_11.1.1/jrf-api.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.mds_11.1.1/mdsrt.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.adf.share.ca_11.1.1/adf-share-base.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.adf.share_11.1.1/adflogginghandler.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.ucp_11.1.0.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.adf.model_11.1.1/jdev-cm.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.javacache_11.1.1/cache.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.xmlef_11.1.1/xmlef.jar:/opt/oinstall/middleware/Oracle_BI1/soa/modules/oracle.soa.mgmt_11.1.1/soa-infra-mgmt.jar:/opt/oinstall/middleware/Oracle_BI1/soa/modules/oracle.soa.fabric_11.1.1/fabric-runtime.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.fabriccommon_11.1.1/fabric-common.jar:/opt/oinstall/middleware/Oracle_BI1/soa/modules/oracle.soa.b2b_11.1.1/b2b.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.adf.share_11.1.1/oracle-el.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.adf.share_11.1.1/commons-el.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.xdk_11.1.0/xml.jar:/opt/oinstall/middleware/modules/javax.jms_1.1.1.jar:/opt/oinstall/middleware/modules/javax.jsp_1.1.0.0_2-1.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/jewt4.jar:/opt/oinstall/middleware/Oracle_BI1/oui/jlib/OraInstaller.jar:/opt/oinstall/middleware/Oracle_BI1/oui/jlib/srvm.jar:/opt/oinstall/middleware/Oracle_BI1/jlib/SchemaVersion.jar:/opt/oinstall/middleware/Oracle_BI1/webservices/lib/jaxrpc-api.jar:/opt/oinstall/middleware/Oracle_BI1/assistants/opca/jlib/opca.jar:/opt/oinstall/middleware/Oracle_BI1/portal/jlib/ptlshare.jar:/opt/oinstall/middleware/Oracle_BI1/portal/jlib/portaltools.jar:/opt/oinstall/middleware/Oracle_BI1/adfp/lib/wce.jar:/opt/oinstall/middleware/Oracle_BI1/ldap/odi/jlib/sync.jar:/opt/oinstall/middleware/Oracle_BI1/ldap/odi/jlib/madintegrator.jar:/opt/oinstall/middleware/Oracle_BI1/ohs/lib/ohs.jar:/opt/oinstall/middleware/Oracle_BI1/opmn/lib/iasprovision.jar:/opt/oinstall/middleware/Oracle_BI1/opmn/lib/optic.jar:/opt/oinstall/middleware/Oracle_BI1/opmn/lib/nonj2eembeans.jar:/opt/oinstall/middleware/Oracle_BI1/opmn/lib/wlfullclient.jar:/opt/oinstall/middleware/Oracle_BI1/opmn/lib/opmneditor.jar:/opt/oinstall/middleware/Oracle_BI1/lib/java/shared/args4j/2.0.9/args4j-2.0.9.jar:/opt/oinstall/middleware/Oracle_BI1/oam/server/lib/ojmisc.jar:/opt/oinstall/middleware/Oracle_BI1/ucm/idc/jlib/idcupgrade.jar:/opt/oinstall/middleware/Oracle_BI1/../oracle_common/modules/oracle.xdk_11.1.0/xml.jar:/opt/oinstall/middleware/Oracle_BI1/../oracle_common/modules/oracle.xdk_11.1.0/xmlparserv2.jar:NOSOA/soa/modules/oracle.soa.workflow_11.1.1/bpm-services.jar:/opt/oinstall/middleware/Oracle_BI1/../oracle_common/modules/oracle.fabriccommon_11.1.1/fabric-common.jar:/opt/oinstall/middleware/Oracle_BI1/../oracle_common/modules/oracle.webservices_11.1.1/wsclient.jar:/opt/oinstall/middleware/Oracle_BI1/../oracle_common/modules/oracle.jps_11.1.1/jps-manifest.jar:/opt/oinstall/middleware/Oracle_BI1/../Oracle_SOA1/soa/modules/oracle.soa.fabric_11.1.1/bpm-infra.jar:/opt/oinstall/middleware/Oracle_BI1/../Oracle_SOA1/soa/modules/oracle.soa.fabric_11.1.1/oracle-soa-client-api.jar:/opt/oinstall/middleware/oracle_common/webservices/wsclient_extended.jar:/opt/oinstall/middleware/Oracle_BI1/clients/bipublisher/xdo-server.jar:/opt/oinstall/middleware/Oracle_BI1/clients/bipublisher/xdo-core.jar:/opt/oinstall/middleware/Oracle_BI1/clients/bipublisher/versioninfo.jar:/opt/oinstall/middleware/Oracle_BI1/clients/bipublisher/i18nAPI_v3.jar:/opt/oinstall/middleware/Oracle_BI1/common/SharedServices/11.1.2.0/lib/quartz.jar:/opt/oinstall/middleware/Oracle_BI1/clients/bipublisher/gson-1.3.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.jdbc_11.1.1/ojdbc6dms.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.adf.model_11.1.1/adfm.jar:NOSOA/soa/modules/oracle.rules_11.1.1/rulesdk2.jar:NOSOA/soa/modules/oracle.rules_11.1.1/rules.jar:NOSOA/soa/modules/oracle.soa.fabric_11.1.1/bpm-infra.jar:NOSOA/soa/modules/oracle.soa.workflow_11.1.1/bpm-services.jar:/opt/oinstall/middleware/oracle_common/soa/modules/commons-cli-1.1.jar:/opt/oinstall/middleware/oracle_common/soa/modules/oracle.soa.mgmt_11.1.1/soa-infra-mgmt.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/OIMServer.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/quartz-1.6.0.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/velocity-dep-1.4.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/velocity-tools-1.4.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/velocity-tools-generic-1.3.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/commons-logging.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/commons-dbcp-1.2.1.jar:/opt/oinstall/middleware/Oracle_BI1/server/ext/jakarta-commons/commons-pool-1.2.jar:/opt/oinstall/middleware/Oracle_BI1/server/ext/jakarta-commons/commons-collections-3.1.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/xlGenConnector.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/iam-platform-entitymgr.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/iam-platform-utils.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/spring.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.idm_11.1.1/identityutils.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/iam-ejb.jar:/opt/oinstall/middleware/Oracle_BI1/../oracle_common/modules/oracle.adf.share.ca_11.1.1:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/iam-platform-pluginframework.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/xlDataObjects.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/iam-platform-authz-service.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/admin.war/WEB-INF/lib/iam-features-identity.zip:/opt/oinstall/middleware/Oracle_BI1/server/features/iam-features-configservice.zip:/opt/oinstall/middleware/Oracle_BI1/server/features/iam-features-authzpolicydefn.zip:/opt/oinstall/middleware/Oracle_BI1/server/oes/oimpds.jar:/opt/oinstall/middleware/Oracle_BI1/../oracle_common/modules/oracle.nlsgdk_11.1.0/orai18n-service.jar:/opt/oinstall/middleware/Oracle_BI1/server/seed_data/lib/seedPolicyData.jar:/opt/oinstall/middleware/Oracle_BI1/server/seed_data/lib/seedRcuData.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/iam-platform-auth-client.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/iam-platform-auth-server.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/iam-platform-context.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/iam-platform-kernel.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/xlVO.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/xlAPI.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/xlAuditor.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/xlDataObjectBeans.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/xlmap.xml:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/xlCache.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/xlUtils.jar:/opt/oinstall/middleware/Oracle_BI1/server/apps/oim.ear/APP-INF/lib/oscache.jar:/opt/oinstall/middleware/Oracle_BI1/server/ext/ucp.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.adf.share.ca_11.1.1/adf-share-ca.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.xmlef_11.1.1/xmlef.jar:/opt/oinstall/middleware/oracle_common/modules/oracle.javacache_11.1.1/cache.jar:/opt/oinstall/middleware/oracle_common/modules/com.bea.core.apache.commons.logging_1.1.0.jar:/opt/oinstall/middleware/oracle_common/modules/com.oracle.ocm_1.0.0.0.jar:/opt/oinstall/middleware/oracle_common/inventory/Scripts/ext/jlib/ojdbc6.jar:/opt/oinstall/middleware/oracle_common/jlib/share.jar:/opt/oinstall/middleware/modules/org.apache.ant_1.7.1/lib/ant.jar:/opt/oinstall/middleware/modules/org.apache.ant_1.7.1/lib/ant-launcher.jar
    [2012-08-08T14:17:54.975-04:00] [Framework] [NOTIFICATION] [] [upgrade.Framework] [tid: 10] [ecid: 0000J^7TGkG7m3L5MRO5ye1G8epI000001,0] Java library path: /opt/oinstall/middleware/Oracle_BI1/jdk/jre/lib/amd64/server:/opt/oinstall/middleware/Oracle_BI1/jdk/jre/lib/amd64:/opt/oinstall/middleware/Oracle_BI1/jdk/jre/../lib/amd64:/opt/oinstall/middleware/Oracle_BI1/lib:/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib
    [2012-08-08T14:17:55.361-04:00] [Framework] [ERROR] [UPGAST-00055] [upgrade.Framework] [tid: 10] [ecid: 0000J^7TGkG7m3L5MRO5ye1G8epI000001,0] error reading the Oracle Universal Installer inventory
    [2012-08-08T14:17:55.362-04:00] [Framework] [ERROR] [] [upgrade.Framework] [tid: 10] [ecid: 0000J^7TGkG7m3L5MRO5ye1G8epI000001,0] Cause: An error occurred while reading the Oracle Universal Installer inventory. Action: See the secondary error message for additional details.
    [2012-08-08T14:17:55.362-04:00] [Framework] [ERROR] [] [upgrade.Framework] [tid: 10] [ecid: 0000J^7TGkG7m3L5MRO5ye1G8epI000001,0] [[
    oracle.sysman.oii.oiii.OiiiInventoryDoesNotExistException: The inventory pointer location /etc/oraInst.loc is either not readable or does not exist
         at oracle.sysman.oii.oiii.OiiiInstallAreaControl.initAreaControl(OiiiInstallAreaControl.java:1855)
         at oracle.sysman.oii.oiic.OiicStandardInventorySession.initSession(OiicStandardInventorySession.java:292)
         at oracle.sysman.oii.oiic.OiicStandardInventorySession.initSession(OiicStandardInventorySession.java:231)
         at oracle.sysman.oii.oiic.OiicStandardInventorySession.initSession(OiicStandardInventorySession.java:180)
         at oracle.ias.upgrade.OUIInventory.initAll(OUIInventory.java:86)
         at oracle.ias.upgrade.gui.UAWizard.init(UAWizard.java:456)
         at oracle.ias.upgrade.UpgradeDriver.gui(UpgradeDriver.java:276)
         at oracle.ias.upgrade.UpgradeDriver.main(UpgradeDriver.java:181)
    Anyone of you comeacross this issue before?
    thanks in advance.
    Thanks
    Jay.

    Jayaraju Vedala wrote:
    oracle.sysman.oii.oiii.OiiiInventoryDoesNotExistException: The inventory pointer location /etc/oraInst.loc is either not readable or does not existHi,
    Refer to this blog post, this should resolve your problem: ( http://rnm1978.wordpress.com/2011/10/05/obi-11g-upgast-00055-error-reading-the-oracle-universal-installer-inventory/ )
    Thanks,
    -Amith.

Maybe you are looking for

  • Exchange Active Sync is not working

    I have been reading a few dozen of these post that people are having issues with there iphone sync with exchange. I am TOO!. For some i can get into owa and from the iphone safaria. The iphone was able verfy the ssl certificate, but nothing is syncin

  • I do not have Windows Tool bar featured and need to add a new printer to Firefox. How do I do it?

    When I access another web server, there is a tool bar on top "File, and with other functions. I do not have this tool bar with Firefox. I bought a new printer, I need to conect to Firefox in order to print. How do I have the bar and conect the printe

  • How do I count occurances in an array

    I have a 2D array of strings and I want to count the number of times a particular word occurs in the array. I have been able to isolate the column that contains the string I want to count but I can't seem to get the code to actually count how many ti

  • Nomad Jukebox Zen NX Keeps Rebuilding Library

    Hi. Almost every time I start my player,now, it keeps rebuilding the library. Never used to do that!!! Is there a problem with it (failing or something)? Updated it with the latest firmware, got all software updates for it, even formattedit. Dunno wh

  • VOD movie resume starts at the beginning....

    We rented a VOD movie last night.  Half way through watching it we got a phone call so I paused the movie.  5 minutes or so after pausing a message came up saying the pause had timed out and live TV reappeared.   A few minutes later I went back to th