cancel
Showing results for 
Search instead for 
Did you mean: 

How do I add a WindowsAD user via the java SDK?

Former Member
0 Kudos

Post Author: jason_west@bmc.com

CA Forum: JAVA

I have attempted several derivations of this code:

IPluginMgr boPluginMgr;IPluginInfo boPluginInfo;IInfoObjects boInfoObjects;IInfoObject boNewUser; // Retrieve the user pluginboPluginMgr = iStore.getPluginMgr( );boPluginInfo = boPluginMgr.getPluginInfo("CrystalEnterprise.User"); // Create a new infoobject collectionboInfoObjects = iStore.newInfoObjectCollection( ); // Add a new userboNewUser = boInfoObjects.add(boPluginInfo);

Any suggestions?

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Post Author: Ted Ueda

CA Forum: JAVA

You wouldn't be creating the AD user via code. You'd have the AD user created automatically when you configure the Windows AD authentication in BusinessObjects Enterprise using the Central Management Console. Enterprise will connect to AD and create users automatically.Sincerely,Ted Ueda

Former Member
0 Kudos

ok, windows Ad users will be added automatically. fine.

But i want to know is there a way to change users' password at BO site.