Getting Error while fetching request details by soa composite.
Hi,
I want to get email of the new user from the create user request through soa composite.
Below is the code written in java embedding :
try{
String oimUserName = "(username)";
String oimPassword = "(Password)";
String APPSERVER_TYPE="wls";
String oimURL = "t3://<hostname>:<Port>";
String oimInitialContextFactory = "weblogic.jndi.WLInitialContextFactory";
java.util.Hashtable env = new java.util.Hashtable();
env.put(oracle.iam.platform.OIMClient.JAVA_NAMING_FACTORY_INITIAL , oimInitialContextFactory);
env.put(oracle.iam.platform.OIMClient.JAVA_NAMING_PROVIDER_URL , oimURL);
System.setProperty("java.security.auth.login.config","/app/oracle/middleware/oig/idm/server/client/oimclient/conf/authwl.conf");
System.setProperty("OIM.AppServerType", "wls");