All posts by Mahendra

How to export and import configurations in OAM 11g?

This post talks about migrating the OAM 11g configurations from one environment to the other. The OAM 11g migration process is explained in Oracle Documentation and that typically needs to have Oracle Home binaries to be copied over to the target OAM environment (Well, I think so!!) and few other things. The complete migration process […]

Read More

Backup and restore OIM 11g

This post will explain the steps to back and restore the OIM 11g. Typically the cases for backup and restore would involve: Restoring in same database (restoring to previous working state) Restoring in different database (setting up new OIM environment in new DB instance) I will explain the 1st scenario here. The export and import […]

Read More

How to bind and unbind applications to SM using OES API?

In OES 11g, the applications can be binded to SM instances either through OES Admin console or through API. In this post I would like to provide sample code snippet to do the same. Assuming that there is a proper jps-config.xml of an SM instance, the code snippet will work if the JPS Context is […]

Read More

Import and export policies in OES 11g using API

My friend has already posted about exporting and importing policies in OES 11g through command line. However, if you wish to do the same operation using OES 11g API, here is what you need to do: Use the jps-config.xml as specified in the above posts for export and import respectively. The below code snippet will […]

Read More

Change data sources to point to a specific OIM schema

I had set up a new OIM 11g environment recently and there was OIM schema with prefix DEV_OIM already being used by different OIM instance. So in the new OIM instance I had created schema with prefix as EXPIMP so that schema name is EXPIMP_OIM and thus other OIM dependent schemas are EXPIMP_MDS, EXPIMP_SOAINFRA and […]

Read More

Copying configuration files between OVD 11g servers

Configuration files from OVD 11g perspective includes server.os_xml, adapters.os_xml, acls.os_xml and schema.user.xml.  These files are located at $AS_INSTANCE/config/OVD/<ovd_server>. server.os_xml : It contains the master configuration details such as Names of other configuration files (for example, adapters.os_xml), General Information and Licensing Information, Global Plug-in Configuration, Logging Configuration, System Wide Quotas, Denial of Service Settings, View Definitions, […]

Read More

Exporting and Importing partners in OAM 11g

In OAM 11g, partners can be exported and imported using WLST command line tool. Note that there is no GUI interface to perform this operation unlike OAM Configuration Manager in 10g. I have covered export and import of policies in previous post . The export and import partners also entail in similar steps using WLST […]

Read More

Creating OVD 11g adapters without using ODSM console

The only supported method to create OVD 11g adapters is to create it using ODSM console. However if you want to create the adapters without using GUI, you can do so by updating adapters.os_xml. This is the file where all adapter details gets stored. Let me talk about my exploration right from the beginning. I […]

Read More

How to set OID 11g in debug mode

Recently I had to troubleshoot OAM/OIM integration where OID is used as identity store and I had to set OID 11g in debug mode. I think this will be useful to share with you all. To set OID in debug mode: Create an ldif file with contents as shown below. dn: cn=oid1,cn=osdldapd,cn=subconfigsubentry changetype: modify replace: […]

Read More

“oracle.security.jps.service.policystore.PolicyObjectNotFoundException” error while deleting OES 11g application roles

I am using OES 11g API for performing deletion of application roles of a specific application. Here is the sample code snippet. However you can refer the OES 11g documentation how to programatically delete OES objects using API. //get the AppRoleManager AppRoleManager appRoleManager = Trading.getAppRoleManager(); //delete the AppRoleEntry appRoleManager.deleteAppRole(“TradingAppRole”, “true”); While trying to delete the […]

Read More
1 5 6 7 8 9 20
Not found