Network Deployment (Distributed operating systems), v8.0 > Secure applications and their environment > Authenticate users > Use the JAAS programming model for web authentication > Develop custom login modules for a system login configuration for JAAS > Customize application login with JAAS > 2. Configure programmatic logins with JAAS.


Configure programmatic logins for Java Authentication and Authorization Service

A new JAAS login configuration can be added and modified using the admin console. The changes are saved in the cell-level security document and are available to all managed application servers.

Java Authentication and Authorization Service (JAAS) is a feature in WAS. JAAS is a collection of WAS strategic authentication APIs and replaces the Common Object Request Broker Architecture (CORBA) programmatic login APIs.

WAS provides some extensions to JAAS:

JAAS login configurations are defined in the WAS configuration API security document. Click Security > Global security. Under Java Authentication and Authorization Service, click Application logins. The following JAAS login configurations are available:

ClientContainer

Defines a login configuration and a LoginModule implementation that is similar to that of the WSLogin configuration, but enforces the requirements of the WAS client container. See Configuration entry settings for JAAS.

DefaultPrincipalMapping,

Defines a special LoginModule module that is typically used by Java EE connectors to map an authenticated WAS user identity to a set of user authentication data (user ID and password) for the specified back-end enterprise information system (EIS). For more information about Java EE Connector and the DefaultMappingModule module, refer to the Java EE security section.

WSLogin

Defines a login configuration and a LoginModule implementation that applications can use in general.

A new JAAS login configuration can be added and modified using the admin console. The changes are saved in the cell-level security document and are available to all managed application servers. An application server restart is required for the changes to take effect at run time.

Attention: Do not remove or delete the predefined JAAS login configurations (such as, ClientContainer, WSLogin, and DefaultPrincipalMapping). Deleting or removing them can cause other enterprise applications to fail.


Procedure

  1. Delete a JAAS login configuration.

    1. Click Security > Global security.

    2. Under Java Authentication and Authorization Service, click Application logins. The Application Login Configuration panel is displayed.

    3. Select the check box for the login configurations to delete and click Delete.

  2. Create a new JAAS login configuration.

    1. Click Security > Global security.

    2. Under Java Authentication and Authorization Service, click Application logins.

    3. Click New. The Application Login Configuration panel is displayed.

    4. Specify the alias name of the new JAAS login configuration and click Apply. This value is the name of the login configuration that you pass in the javax.security.auth.login.LoginContext implementation for creating a new LoginContext context.

      Click Apply to save changes and to add the extra node name that precedes the original alias name. Clicking OK does not save the new changes in the security.xml file.

    5. Under Additional properties, click JAAS Login Modules.

    6. Click New.

    7. Specify the Module class name. Specify the WAS proxy LoginModule module because of the limitation of the class loader visibility.

    8. Specify the LoginModule implementation as the delegate property of the Proxy LoginModule module. The WAS proxy LoginModule class name is com.ibm.ws.security.common.auth.module.proxy.WSLoginModuleProxy.

    9. Select Authentication strategy from the list and click Apply.

    10. Under Additional properties, click Custom properties. The Custom properties panel is displayed for the selected LoginModule.

    11. Create a new property with the name delegate and the value of the real LoginModule implementation. We can specify other properties like debug with the true value. These properties are passed to the LoginModule class as options to the initialize method of the LoginModule instance.

    12. Click Save.

      For a WAS ND installation, make sure that a file synchronization operation is performed to propagate the changes to other nodes.

    Several locations are within the WAS directory structure where you can place a JAAS login module. The following list provides locations for the JAAS login module in order of recommendation:

    • Within an EAR file for a specific Java EE application.

      If you place the login module within the EAR file, the login module is accessible by the specific application only.

    • In the WAS-shared library.

      If you place the login module in the shared library, specify which applications can access the module. For more information on shared libraries, see the Managing shared libraries article.

    • In the Java extensions directory.

      If you place the JAAS login module in the Java extensions directory, the login module is available to all applications.

    Although the Java extensions directory provides the greatest availability for the login module, place the login module in an application EAR file. If other applications need to access the same login module, consider using shared libraries.

  3. Change the plain text file.

    WAS supports the default JAAS login configuration format, which is a plain text file, provided by the JAAS default implementation. However, a tool is not provided that edits plain text files in this format. We can define the JAAS login configuration in the plain text file, which is located in the WAS_HOME/properties/wsjaas.conf file. Any syntax errors can cause the incorrect parsing of the plain JAAS login configuration text file. This problem can cause other applications to fail.

    Java client programs that use the Java Authentication and Authorization Service (JAAS) for authentication must invoke with the JAAS configuration file specified. This configuration file is set in the WAS_HOME/bin/launchClient.bat file as:

    set JAAS_LOGIN_CONFIG=-Djava.security.auth.login.config=%install_root%\properties\wsjaas_client.conf
    
    If the launchClient.bat file is not used to invoke the Java client program, verify that the appropriate JAAS configuration file is passed to the Java virtual machine with the -Djava.security.auth.login.config flag.


Results

A new JAAS login configuration is created or an old JAAS login configuration is removed. An enterprise application can use a newly created JAAS login configuration without restarting the application server process.

However, new JAAS login configurations that are defined in the WAS_HOME/properties/wsjaas.conf file, do not refresh automatically. Restart the application servers to validate changes. These JAAS login configurations are specific to a particular node and are not available for other application servers running on other nodes.


What to do next

Create new JAAS login configurations that are used by enterprise applications to perform custom authentication. Use these newly defined JAAS login configurations to perform programmatic login.


Related


Login configuration for JAAS
Configuration entry settings for JAAS
System login configuration entry settings for JAAS
Login module settings for JAAS
Login module order settings for JAAS
Login configuration settings for JAAS
Manage Java 2 Connector Architecture authentication data entries for JAAS
Java EE connector security
Programmatic login for JAAS
Develop programmatic logins with the JAAS
Manage shared libraries
Customize application login with JAAS

+

Search Tips   |   Advanced Search