• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

UserRegistry: Create/Edit/Delete User/Group in WebSphere Application Server

 
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
On WebSphere Application Server for UserManagement through java code.
we are using UserRegistry Interface for getting information about User. But this api provide only readonly access,
Can anybody help me how we can Edit/Delete User/Group with these api or any other simillar api.

For WebSphere Portal Server, PUMA controller API provides this functionlaity access is there any API for Application Server also.
 
Bartender
Posts: 10336
Hibernate Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
UserRegistries are specifically for authentication and authorisation, not user management. How, for example, could you manage an LDAP UserRegistry backed by Active Directory?

I assume you use a custom UserRegistry? If so, what actually holds your user and group data?
 
Ranch Hand
Posts: 689
Scala Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Paul Sturrock wrote:UserRegistries are specifically for authentication and authorisation, not user management. How, for example, could you manage an LDAP UserRegistry backed by Active Directory?

I assume you use a custom UserRegistry? If so, what actually holds your user and group data?



Actually the requirement is we want to add/edit/delete User and Group using java code which is replicated to WebSphear Application server 6.1 also and that user and group also added/edited/deleted to WAS 6.1. As per my RnD Portal server provide Pumacontroller and PumaHome interface for user and group management. But the prblem is we can not use this interface to our WAS 6.1. So, what the alternative for that ?
How can I add/edit/delete group and user in WAS 6.1 using java code?
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic