Securing Web services using basicauth authentication

WAS provides several different methods to secure your Web services. Extensible Markup Language (XML) digital signature is one of these methods. You might also secure your Web services using any of the following methods...

With the basicauth authentication method, the request sender generates a basicauth security token using a callback handler. The request receiver retrieves the basicauth security token from the SOAP message and validates it using a Java Authentication and Authorization Service (JAAS) login module. Trust is established using user name and password validation. To use basicauth authentication to secure Web services, complete the following tasks...

  1. Secure the client for basicauth authentication.

    1. Configure the client for basicauth authentication: Specifying the method

    2. Configure the client for basicauth authentication: Collecting the authentication information

  2. Secure the server for basicauth authentication.

    1. Configure the server to handle basicauth authentication

    2. Configure the server to validate basicauth authentication information

After completing these steps, you have secured your Web services using basicauth authentication.

 

See Also

BasicAuth authentication method
Securing Web services based on WS-Security