WAS v8.5 > Secure applications > Secure web services > Secure web services > Web Services Security concepts > Web Services Security concepts > What is new for securing web services

Web Services Security enhancements

WebSphere Application Server includes a number of enhancements for securing web services. For example, policy sets are supported in WAS v6.1 Feature Pack for Web Services, and later, to simplify security configuration for web services.


Building the applications

The Web Services Security runtime implementation used by WAS v8 is based on the JAX-WS programming model. The JAX-WS runtime environment is based on Apache Open Source Axis2, and the data model is AXIOM. Instead of deployment descriptor and bindings, a policy set is used for configuration. We can use the dmgr console to edit the application binding files associated with the policy sets. The JAX-WS runtime environment is supported for the WAS V6.1 Feature Pack for Web Services, and later.

The JAX-RPC programming model, which uses deployment descriptors and bindings, is still supported. Read the topic Secure JAX-RPC Web services using message level security for more information.


Use policy sets

Use policy sets to simplify the web service Quality of Service configuration.

Policy sets can only be used with JAX-WS applications, in WAS V6.1 Feature Pack for Web Services, and later. Policy sets cannot be used for JAX-RPC applications.

Policy sets combine configuration settings, including those for transport and message level configuration, such as Web Services Addressing (WS-Addressing), Web Services Reliable Messaging (WS-ReliableMessaging), and WS-Security, which includes Secure Conversation (WS-SecureConversation).


Manage trust policies

Web Services Security Trust (WS-Trust) provides the ability for an endpoint to issue a security context token for Web Services Secure Conversation (WS-SecureConversation). The token issuing support is limited to the security context token. Trust policy management defines a policy for each of the trust service operations, such as issuing, cancelling, validating, and renewing a token. A client's bootstrap policies must correspond to the WAS trust service policies.


Secure session-based messages

Web Services Secure Conversation provides a secured session for long running message exchanges and leveraging symmetric cryptographic algorithm. WS-SecureConversation provides the basic security for securing session-based messages exchange patterns, such as Web Services Security Reliable Messaging (WS-ReliableMessaging).


Update message-level security

WS-Security v1.1 supports the following functions that update the message-level security.


Signature confirmation enhances the protection of XML digital signature security. The <SignatureConfirmation> element indicates the responder has processed the signature in the request, and the signature confirmation ensures the signature is indeed processed by the intended recipient. To process signature confirmation correctly, the initiator must preserve the signatures during the request generation processing and later must retrieve the signatures for confirmation checks even with the stateless nature of web services and the different message exchange patterns. You enable signature confirmation by configuring the policy.

The encrypted header element provides a standard way of encrypting SOAP headers, which helps inter-operability. As defined in the SOAP message security specification, the <EncryptedHeader> element indicates that a specific SOAP header (or set of headers) must be protected. Encrypting SOAP headers and parts helps to provide more secure message-level security. The EncryptedHeader element ensures compliance with the SOAP mustUnderstand processing guidelines and prevents disclosure of information contained in attributes on a SOAP header block.


Use identity assertion

In a secured environment such as an intranet, a SSL connection or through a Virtual Private Network (VPN), it is useful to send the requester identity only without credentials, such as password, with other trusted credentials, such as the server identity. WAS supports the following types of identity assertions:

For more information about identity assertion, read the topic Trusted ID evaluator.


Signing or encrypting data with a custom token

For JAX-RPC, the key locator, or the com.ibm.wsspi.wssecurity.keyinfo.KeyLocator Java interface, is enhanced to support the flexibility of the specification. The key locator is responsible for locating the key. The local JAAS Subject is passed into the KeyLocator.getKey() method in the context. The key locator implementation can derive the key from the token, which is created by the token generator or the token consumer, to sign a message, to verify the signature within a message, to encrypt a message, or to decrypt a message. The com.ibm.wsspi.wssecurity.keyinfo.KeyLocator Java interface is different from the version in WAS v5.x. The com.ibm.wsspi.wssecurity.config.KeyLocator interface from v5.x is deprecated. There is no automatic migration for the key locator from v5.x to Versions 6 and later. You must migrate the source code for the v5.x key locator implementation to the key locator programming model for v6 and later.

For the JAX-WS programming model, the pluggable token framework reuses the same framework from the WSS API. The same implementation for creating and validating a security token can be used in both the Web Services Security run time and the WSS API application. This simplifies the SPI programming model and makes it easier to add new or custom security token types. The redesigned SPI consists of the following interfaces:

When using JAX-WS, the following interfaces are no longer required:

We can learn more about custom security tokens by reading these articles on the IBM developerWorks website:


Signing or encrypting any XML element

An XPath expression is used for selecting which XML element to sign or encrypt. However, an envelope signature is used when we sign the SOAP envelope, SOAP header, or Web Services Security header. In JAX-RPC web services, the XPath expression is specified in the application deployment descriptor. In JAX-WS web services, the XPath expression is specified in the WS-Security policy of the policy set.

The JAX-WS programming model uses policy sets to indicate the message parts where security should be applied. For example, the <Body> assertion is used to indicate the body of the SOAP message is signed or encrypted. Another example is the <Header> assertion, where the QName of the SOAP header to be signed or encrypted is specified.


Signing or encrypting SOAP headers

The OASIS WS-Security v1.1 support provides for a standard way of encrypting and signing SOAP headers. To sign or encrypt SOAP messages, specify the QName to select header elements in the SOAP header of the SOAP message.

We can configure policy sets for signing or encrypting either using the dmgr console or using Web Services Security APIs (WSS APIs). For more details, see the topic Securing message parts using the dmgr console.

For signing, specify the following:

Name

This optional attribute indicates the local name of the SOAP header to be integrity protected. If this attribute is not specified, all SOAP headers whose namespace matches the Namespace attribute are to be protected.

Namespace

This required attribute indicates the namespace of the SOAP headers to be integrity protected.

For encrypting, specify the following:

Name

This optional attribute indicates the local name of the SOAP header to be confidentiality protected. If this attribute is not specified, all SOAP headers whose namespace matches the Namespace attribute are to be protected.

Namespace

This required attribute indicates the namespace of the SOAP header(s) to be confidentiality protected.
This results in an <EncryptedHeader> element containing the <EncryptedData> element.

For Web Services Security v1.0 behavior, specify the com.ibm.wsspi.wssecurity.encryptedHeader.generate.WSS1.0 property with a value of true in EncryptionInfo in the bindings. Specifying this property results in an <EncryptedData> element.

For Web Services Security v1.1 behavior that is equivalent to WAS versions prior to version 7.0, specify the com.ibm.wsspi.wssecurity.encryptedHeader.generate.WSS1.1.pre.V7 property with a value of true on the <encryptionInfo> element in the binding. When this property is specified, the <EncryptedHeader> element includes a wsu:Id parameter and the <EncryptedData> element omits the Id parameter. This property should only be used if compliance with Basic Security Profile 1.1 is not required and it is necessary to send <EncryptedHeader> elements to a client or server that uses the WAS v5.1 Feature Pack for Web Services.


Supporting LTPA

Lightweight Third Party Authentication (LTPA) is supported as a binary security token in Web Services Security. Web Services Security supports both LTPA (version 1) and LTPA version 2 tokens. The LTPA version 2 token, which is more secure than version 1, is supported in WAS version 7.0 and later.


Extend the support for timestamps

We can insert a timestamp in other elements during the signing process besides the Web Services Security header. This timestamp provides a mechanism for adding a time limit to an element. This support is an extension for WAS. Other vendor implementations might not have the ability to consume a message generated with an additional timestamp that is inserted in the message.


Extend the support for nonce

We can insert a nonce, which is a randomly generated value, in other elements beside the Username token. The nonce is used to reduce the chance of a replay attack. This support is an extension for WAS. Other vendor implementations might not have the ability to consume messages with a nonce that is inserted into elements other than a Username token.


Supporting distributed nonce caching

Distributed nonce caching is a new feature for web services in WAS Versions 6 and later that enables you to replicate nonce data between servers in a cluster. For example, you might have application server A and application server B in cluster C. If application server A accepts a nonce with a value of X, then application server B creates a SoapSecurityException if it receives the nonce with the same value within a specified period of time.


Caching the X.509 certificate

WAS caches the X.509 certificates it receives, by default, to avoid certificate path validation and improve its performance. However, this change might lead to security exposure. We can disable X.509 certificate caching using the following steps:

On the server level:


Providing support for a certificate revocation list

The certificate revocation list (CRL) in WAS is used to enhance certificate path validation. We can specify a CRL in the collection certificate store for validation. We can also encode a CRL in an X.509 token using PKCS#7 encoding. However, WAS v6 and later do not support X509PKIPathv1 CRL encoding in a X.509 token.

The PKCS#7 encoding was tested with the IBM certificate path (IBM CertPath) provider only. The encoding is not supported for other certificate path providers.


Related concepts:

Collection certificate store
Certificate revocation list
Nonce, a randomly generated token
Development and assembly tools
Distributed nonce cache
Encrypted SOAP headers
Web Services Secure Conversation
Trust service
Web services policy sets
Web services policies
Trusted ID evaluator


Related


Secure message parts
Manage policies in a policy set
Secure JAX-RPC web services using message-level security
Manage policy sets
Secure requests to the trust service using system policy sets


+

Search Tips   |   Advanced Search