Discussions
Categories
- 17.9K All Categories
- 3.4K Industry Applications
- 3.3K Intelligent Advisor
- 63 Insurance
- 536.4K On-Premises Infrastructure
- 138.3K Analytics Software
- 38.6K Application Development Software
- 5.8K Cloud Platform
- 109.5K Database Software
- 17.5K Enterprise Manager
- 8.8K Hardware
- 71.1K Infrastructure Software
- 105.3K Integration
- 41.6K Security Software
Add and delete Users and groups dynamically

Hi,
The user management like adding/removing users, and groups needs to be implemented in the custom UI application. Please let me know if we have any API or any other approach for managing the users/groups via the custom UI application.
Thanks,
Answers
-
Hi,
You can do it using WLST, see: https://blog.darwin-it.nl/2016/07/create-weblogic-users-for-servicebus.html and https://blog.darwin-it.nl/2016/07/create-weblogic-users-for-servicebus-12c.html . This was specific to a project for a customer to setup a ServiceBus environment, but it works with any FusionMiddleware or Weblogic environment.
You can also call wlst from Java. See for instance: https://www.webagesolutions.com/blog/archives/879
Or you could directly invoke the MBeans over a jmx connection.
Regards,
Martien -
Thanks for the response.
Similarly is there a way to assign users/groups to application roles in BPM workspce via API or script.
Thanks.
-
Yes, basically it's in the same way as in https://blog.darwin-it.nl/2016/07/create-weblogic-users-for-servicebus-12c.html .
Basically it's about the grantAppRole () function: https://docs.oracle.com/middleware/1212/idm/IDMCR/custom_infra_security.htm#IDMCR564
But for the stripe you need to use 'OracleBPMProcessRolesApp'.
See also http://blog.whitehorses.nl/2014/02/14/bpm-workspace-scripted-security/ .
Regards,
Martien -