+

Search Tips   |   Advanced Search

 

Configure the UDDI registry to use WAS security

 

You can configure the UDDI registry to determine whether users are allowed access to services, and to determine security of data at the transport level. Before you start this task, complete the following two steps:

 

Overview

The UDDI registry exploits two aspects of WebSphere Application Server security:

Authorization

Authorization determines whether users are allowed access to services. WAS determines authorization by mapping users, or groups of users, to roles. UDDI makes use of two WAS special subjects: Everyone (all users are allowed access) and AllAuthenticatedUsers (only valid WAS registered users are allowed access).

Data confidentiality

Data confidentiality determines security at the transport level. Data confidentiality for WAS services can be either 'none' (HTTP is used as the transport protocol) or 'confidential' (requiring the use of SSL; HTTPS is used as the transport protocol).
When WAS security is enabled, the default settings in the UDDI V3 Application and Web deployment descriptors produce the following results:

We recommend that you use the default settings, as described previously. However, you can change the defaults by mapping roles to different users or user groups. If you do this, turn on the Automatically register UDDI publishers property (see UDDI node settings) so that you do not need to use two mechanisms to give access to a subset of users. You can also have a role that is not mapped to any users or user groups, in which case all access to that role is disabled.

For more information about UDDI role mappings, and a list of UDDI registry services and roles, see Access control for UDDI registry interfaces.

To change the default settings, use the following steps:

 

Procedure

  1. To change the role mappings using the administrative console...

    1. In the navigation pane, click Applications > Enterprise Applications.

    2. In the content pane, click the UDDI registry application.

    3. Under Detail Properties click Security role to user/group mapping.

    4. Make any changes you require and click OK.

  2. To change the role mappings using the wsadmin command...

    1. Use the MapRolesToUsers option of the edit command of the AdminApp object to map the roles defined in the UDDI registry application to special subjects (Everyone or AllAuthenticatedUsers), to users, or to user groups. For example, the following Java command language (JACL) statement maps the V3 GUI Publish role to Everyone, and the V3 SOAP Publish role to user 'user1' and group 'group1':

      $AdminApp edit $AppName {-MapRolesToUsers { {"GUI_Publish_User" Yes No "" ""} {"V3SOAP_Publish_
      User_Role" No No "user1" "group1"} }} 
      
      where $AppName is a variable representing the name of the UDDI registry application.

      For more information about using the MapRolesToUsers option, see Options for the AdminApp object install, installInteractive, edit, editInteractive, update, and updateInteractive commands.

  3. To change the data confidentiality settings, refer to Configure SOAP API and GUI services for the UDDI registry.


Next topic: UDDI registry security additional considerations

 

Related concepts


Access control for UDDI registry interfaces

 

Related tasks


Configure the UDDI registry to use UDDI security
Configure SOAP API and GUI services for the UDDI registry
Configure UDDI registry security

 

Related Reference


Options for the AdminApp object install, installInteractive, edit, editInteractive, update, and updateInteractive commands