+

Search Tips   |   Advanced Search

Enable secure conversation using wsadmin


Use this topic and the commands in the SecureConversation group of the AdminTask object to enable secure conversation client cache by creating a new policy set and bindings to attach to the applications.

Verify that the SecureConversation policy set is available in the configuration. By default, the SecureConversation policy set is not available. Use the importPolicySet command to import the SecureConversation policy to the configuration...

AdminTask.importPolicySet('-defaultPolicySet SecureConversation')

Before you use the commands in this topic, verify that we are using the most recent version of wsadmin. The policy set management commands that accept a properties object as the value for the attributes or bindingLocation parameters are not supported on previous versions of wsadmin. For example, the commands do not run on a V6.1.0.x node.

This page uses the default SecureConversation policy set and default WS-Security and TrustServiceSecurityDefault bindings to enable secure conversation.

The default SecureConversation policy set contains an application policy with the symmetric binding, and a bootstrap policy with the asymmetric binding. The application policy secures application messages. The bootstrap policy secures RequestSecurityToken (RST) messages. The trust service, which issues security context token providers, uses the TrustServiceSecurityDefault system policy and the TrustServiceSecurityDefault bindings. The trust policy secures RequestSecurityTokenResponse (RSTR) messages. If we modify the bootstrap policy, also modify the trust policy so that both of the configurations match.

Use the following steps in development and test environments only. The WS-Security bindings in this procedure contain sample key files that customize before using the bindings in a production environment. Create custom bindings for the production environment.

 

  1. Launch wsadmin using Jython.

  2. Copy the existing SecureConversation policy set. Use the following command example to create a new policy set by copying the existing SecureConversation policy set:

    AdminTask.copyPolicySet('[-sourcePolicySet SecureConversation -newPolicySet CopyOfSCPolicySet]')
    

  3. Change the binding for the global security domain. If we chose the Create the server using the development template option when you created the profile with the Profile Management Tool or the manageprofiles command utility, optionally skip this step.

    1. List each WS-Security policy attribute. To modify the binding for the global security domain, use the getDefaultBindings command to determine the binding that is set as the default for the provider or client...

      AdminTask.getDefaultBinding('-bindingType provider')
      

    2. Display the attributes for the binding. Use the getBinding command to display the current attributes for the binding, as the following example demonstrates:

      AdminTask.getBinding('-bindingLocation "" -bindingName myBinding')
      

    3. Modify the outbound configuration for the protection token.

      Use the following commands to modify the outbound configuration for the protection token:

      cmd1_attributes_value = "[ [application.securityoutboundbindingconfig.tokengenerator_5.callbackhandler
      .key.name [CN=Bob,O=IBM, C=US]] [application.securityoutboundbindingconfig.tokengenerator_5.callbackhandler
      .keystore.storepass storepass] [application.securityoutboundbindingconfig.tokengenerator_5.callbackhandler
      .keystore.type JCEKS] [application.securityoutboundbindingconfig.tokengenerator_5.callbackhandler.key.alias bob] 
      [application.securityoutboundbindingconfig.tokengenerator_5.callbackhandler.keystore.path ${USER_INSTALL_ROOT}
      /etc/ws-security/samples/enc-sender.jceks] ]"
      

      AdminTask.setBinding('[-policyType WSSecurity -bindingLocation "" -attributes cmd1_attributes_value -attachmentType application]') cmd2_attributes_value = "[ [application.securityoutboundbindingconfig.tokengenerator_0.callbackhandler.keystore .path ${USER_INSTALL_ROOT}/etc/ws-security/samples/dsig-sender.ks] [application.securityoutboundbindingconfig .tokengenerator_0.callbackhandler.keystore.storepass client] [application.securityoutboundbindingconfig .tokengenerator_0.callbackhandler.key.name [CN=SOAPRequester, OU=TRL, O=IBM, ST=Kanagawa, C=JP]] [application .securityoutboundbindingconfig.tokengenerator_0.callbackhandler.key.keypass client] [application .securityoutboundbindingconfig.tokengenerator_0.callbackhandler.key.alias soaprequester] [application.securityoutboundbindingconfig.tokengenerator_0.callbackhandler.keystore.type JKS] ]"

      AdminTask.setBinding('[-policyType WSSecurity -bindingLocation "" -attributes cmd2_attributes_value -attachmentType application]')

  4. Modify the TrustDefaultBindings binding. If we chose the Create the server using the development template option when creatingd the profile with the Profile Management Tool or the manageprofiles command utility, optionally skip this step. If the TrustDefaultBindings are not yet customized, use the following commands to modify the TrustDefaultBindings binding:

    cmd3_attributes_value = "[  [application.securityoutboundbindingconfig.tokengenerator_1.callbackhandler.keystore
    .storepass storepass] [application.securityoutboundbindingconfig.tokengenerator_1.callbackhandler.key.alias bob] 
    [application.securityoutboundbindingconfig.tokengenerator_1.callbackhandler.keystore.type JCEKS] [application .securityoutboundbindingconfig.tokengenerator_1.callbackhandler.keystore.path ${USER_INSTALL_ROOT}/etc
    /ws-security/samples/enc-sender.jceks] [application.securityoutboundbindingconfig.tokengenerator_1.callbackhandler
    .key.name [CN=Bob, O=IBM, C=US]] ]"
    

    AdminTask.setBinding('[-policyType WSSecurity -bindingLocation "[attachmentId 2]" -attributes cmd3_attributes_value -attachmentType system/trust]') cmd4_attributes_value = "[ [application.securityoutboundbindingconfig.tokengenerator_0.callbackhandler.keystore.path ${USER_INSTALL_ROOT}/etc/ws-security/samples/dsig-sender.ks] [application.securityoutboundbindingconfig.tokengenerator_0 .callbackhandler.keystore.storepass client] [application.securityoutboundbindingconfig.tokengenerator_0.callbackhandler .key.name [CN=SOAPRequester, OU=TRL, O=IBM, ST=Kanagawa, C=JP]] [application.securityoutboundbindingconfig.tokengenerator_0 .callbackhandler.key.keypass client] [application.securityoutboundbindingconfig.tokengenerator_0.callbackhandler.key .alias soaprequester] [application.securityoutboundbindingconfig.tokengenerator_0.callbackhandler.keystore.type JKS] ]"

    AdminTask.setBinding('[-policyType WSSecurity -bindingLocation "[attachmentId 2]" -attributes cmd4_attributes_value -attachmentType system/trust]')

  5. Attach the policy set and binding to the application. Use the attachmentType parameter for the createPolicySetAttachment command to specify if the application is a service client or a service provider. Use the following commands to attach the CopyOfSCPolicySet policy set to the myTestApp service client application:

    AdminTask.createPolicySetAttachment('[-applicationName myTestApp -policySet CopyOfSCPolicySet 
    -resources WebService:/ -attachmentType client]') 
    
    
    Use the following commands to attach the CopyOfSCPolicySet policy set to the myTestApp service provider application:

    AdminTask.createPolicySetAttachment('[-applicationName myTestApp -policySet CopyOfSCPolicySet 
    -resources WebService:/ -attachmentType application]')
    
    

    This step automatically assigns the bindings.

 

Results

Your secure conversation configuration is updated in the WSSCCache.xml file located in the cell level directory.

 

What to do next

Manage the secure conversation configurations with the SecureConversation command group for the AdminTask object.


Secure conversation client cache and trust service configuration
SecureConversation default policy sets

 

Related tasks


Set the WS-Security distributed cache
Example: Installing a Web Services Sample with the console