Saturday, 25 February 2017

Oracle Identity And Access Manger FAQ's
===================================
What is the difference between OID & OUD?
Types of Reconciliation? what is the difference between those?
Who will decide how many roles & groups are required in OIM or OID?
What the password policy? and where did you implemented in your project & tell me the steps?
Types of Adapter? How to create a pre-populate Adapter?
How many consoles in OIM?
What is Resource Object?
What is Application Instance?
How to compile a connector?
Troubleshoot a connector?
Connector polling frequency
How to find the custom proper lookup?
failover in OUD?
While doing reconciliation if the users already there what will happen?
If the user profile updated what will happen?
How the LatestToken works?
Tell me about OUD Replication?
Once the employee joins the organization, how the employee provision to application resources?
What are default users in OIM?
OIM Notifications?
How to find the user status in OIM? using a query
How to confirm that replication is working in OID?
What is the use case of custom scheduler?
What is the Method of procedure?
What is two-factor authentication? how you implement using OAM?
What is webgate and how you configure it?
What is authentication & authorization?
How can you archive SSO using OAM?
A user request for SSO via OAM?
What is a connected application/resource?
What is Fulfillment Role?
What is POC?
How to make an attribute mandatory?
Migration of code from other environments?
The difference between Object Form & Process Form?
Define Process Task?
Integration of OIM & OAM?
What is DB security store?
What is the purpose of OPSS schema?
Authentication & Authorization Policies?

Sunday, 19 February 2017

BEA-000402

Here's how you get this to work:

1. Set ThreadPoolSize
ThreadPoolSize is a java parameter that is used to calculate the max Socket readers. Set it via -Dweblogic.ThreadPoolSize

2. Set ThreadPoolPercentSocketReaders

ThreadPoolPercentSocketReaders can be set via weblogic.WLST or otherwise.

3. Set SelfTuningThreadPoolSizeMin == ThreadPoolSize

Unless you increase your default thread pool size, your server will have a slow ramp-up, serving clients. Set this to equal the ThreadPoolSize. You can only do this via WLST.

The following example sets this up so that you have a floor of 50 socket readers

connect()
edit()
startEdit()
cd('/Servers/YOUR_SERVER_NAME')
set('SelfTuningThreadPoolSizeMin',100)
set('ThreadPoolPercentSocketReaders',50)
save()
activate()
disconnect()
exit()