25 Configuring Web Services Security
Note:
Oracle WebCenter Portal has deprecated the support for Jive features (announcements and discussions/discussion forums). Hence, Jive features are not available in 14.1.2 instances.
WS-Security, using an OPSS Key Store Service (KSS) keystore, provides a mechanism for retrieving and managing the security credentials of a WebCenter Portal application and ancillary applications and components across one or more domains. The KSS keystore provides information about available public and private keys that can be used for authentication and data integrity.
The following topics show how to configure a typical topology with WS-Security (where the WebCenter Portal application and the WSRP producers share the same domain, but the BPEL server is in an external SOA domain), and how to extend that configuration for more complex environments (where, for example, a BPEL server is in a separate SOA domain and one WSRP producer is in an external portlet domain):
Permissions:
To perform the tasks in this chapter, you must be granted the WebLogic Server Admin
role through the Oracle WebLogic Server Administration Console. Users with the Monitor
or Operator
roles can view security information but cannot make changes.
See also Understanding Administrative Operations, Roles, and Tools.
25.1 Configuring WS-Security for a Typical Topology
This section describes how to configure WS-Security for a topology where the WebCenter Portal application, and WSRP producers share the same domain, but the BPEL (SOA) server is in an external domain.
Typical Topology
-
Domain 1 : WebCenter Portal , Portlet Producers
-
Domain 2 : SOA
The steps to configure WS-Security for a typical two-domain topology are described in the following topics:
25.1.1 Creating the WebCenter Portal Domain Keystore
This section describes how to use the OPSS Keystore Service (KSS) to create the WebCenter Portal keystore and keys. A keystore is a file that provides information about available public and private keys. Keys are used for a variety of purposes, including authentication and data integrity. User certificates and the trust points needed to validate the certificates of peers are also stored securely in the keystore. After creating the keystore, the security credentials of WebCenter Portal, BPEL servers, and WSRP producers can be retrieved and managed using the KSS. For more information about the OPSS Keystore Service, see Managing Keys and Certificates with the Keystore Service in Securing Applications with Oracle Platform Security Services.
To create the WebCenter Portal domain keystore:
25.1.2 Creating the SOA Domain Keystore
This section describes how to create a SOA domain keystore and keys using an OPSS keystore (KSS). For syntax and reference information about the KSS commands, see OPSS Keystore Service Commands in Oracle Fusion Middleware Infrastructure Security WLST Command Reference.
To create the SOA domain keystore:
25.2 Configuring WS-Security for Multiple Domains
This section describes how to extend the WS-security configuration for a typical topology for topologies where, for example, the WebCenter Portal application, BPEL (SOA) server, and a WSRP producer server are each in their own domain.
Multiple Domain Topology
-
Domain 1 : WebCenter Portal
-
Domain 2 : SOA (BPEL) server
-
Domain 3 : WSRP producers
The steps to configure WS-Security for a topology with multiple domains are described in the following topics:
25.2.1 Setting Up the WebCenter Portal Domain Keystore
To create the WebCenter Portal domain keystore, follow the steps for a configuring WS-security for a typical topology as described in Creating the WebCenter Portal Domain Keystore. After creating the keystore, the security credentials of WebCenter Portal, BPEL servers, and WSRP producers can be retrieved and managed using the KSS. For more information about the OPSS Keystore Service, see Managing Keys and Certificates with the Keystore Service in Securing Applications with Oracle Platform Security Services.
25.2.2 Creating the SOA Domain Keystore
Create the SOA domain keystore and keys using an OPSS keystore (KSS) as described in Creating the SOA Domain Keystore. For syntax and reference information about the KSS commands, see OPSS Keystore Service Commands in Oracle Fusion Middleware Infrastructure Security WLST Command Reference.
25.3 Securing WebCenter Portal for Applications Consuming WebCenter Portal Client API with WS-Security
This section describes the administrator tasks required to configure WS-Security for WebCenter Portal so that the communication between an application exposing the WebCenter Portal API (the consumer) and WebCenter Portal (the producer) is secure, and that the identity of the user invoking the API is protected.
This section includes the following topics:
25.3.1 Configuring a Typical Topology for Applications Consuming WebCenter Portal Client API
If your client application is part of the same domain as WebCenter Portal, you only need to specify the following for the GroupSpaceWSContext()
:
GroupSpaceWSContext context = new GroupSpaceWSContext(); context.setRecipientKeyAlias("producer");
Note:
The alias here should always be the public key.
If your client application is JDeveloper and you have access to the WebCenter Portal server's configured keystore, copy the same keystore to JDeveloper's DefaultDomain/config/fmwconfig/dir
and configure the JDeveloper domain to use this keystore. The steps are exactly same as those in Creating the WebCenter Portal Domain Keystore, and you would then also need to specify the following on your client stub:
GroupSpaceWSContext context = new GroupSpaceWSContext(); context.setRecipientKeyAlias("producer");
25.3.2 Configuring a Multiple Domain Topology for Applications Consuming the WebCenter Portal Client API
If your client application is part of the same domain as WebCenter Portal, you only need to specify the following for the GroupSpaceWSContext()
:
GroupSpaceWSContext context = new GroupSpaceWSContext(); context.setRecipientKeyAlias("producer");
Note:
The alias here should always be the public key.
If your client application is JDeveloper, copy the same keystore to JDeveloper's DefaultDomain/config/fmwconfig/dir
and configure the JDeveloper domain to use this keystore. The steps are exactly same as those in Creating the WebCenter Portal Domain Keystore, and you would then also need to specify the following on your client stub:
GroupSpaceWSContext context = new GroupSpaceWSContext(); context.setRecipientKeyAlias("producer");
25.4 JKS Command Summary for a Typical Topology
Use the following command summary to quickly configure the keystore for a typical topology. These commands explain how to configure a JKS keystore.
WebCenter Side
Use the following keytool
commands to generate the keystore, replacing the values in bold with those for your local environment:
keytool -genkeypair -keyalg RSA -dname "cn=spaces,dc=example,dc=com" -alias webcenter -keypass MyPassword -keystore webcenter.jks -storepass MyPassword -validity 1064
keytool -exportcert -v -alias webcenter -keystore webcenter.jks -storepass MyPassword -rfc -file webcenter_public.cer
SOA Side
keytool -genkeypair -keyalg RSA -dname "cn=bpel,dc=example,dc=com" -alias bpel -keypass MyPassword -keystore bpel.jks -storepass MyPassword -validity 1024
keytool -exportcert -v -alias bpel -keystore bpel.jks -storepass MyPassword -rfc -file bpel.cer
keytool -importcert -alias webcenter_spaces_ws -file webcenter_public.cer -keystore bpel.jks -storepass welcome1
WebCenter Side
keytool -importcert -alias bpel -file bpel.cer -keystore webcenter.jks -storepass welcome1
Copy the webcenter.jks file to your domain_home/config/fmwconfig directory, and the bpel.jks file to your soa_domain_home/config/fmwconfig directory.
Configure the SOA Domain Keystore
Run the following WLST command to register the keystore:
configureWSMKeystore('/WLS/WC_Domain
',JKS, 'webcenter.jks', signAlias='producer', signAliasPassword='signAliasPassword', cryptAlias='cryptAlias', cryptAliasPassword='cryptAliasPassword')
Where:
-
WC_Domain
— TheWebCenter Portal domain -
signAliasPassword — The password for the public key
-
cryptAlias — The public key alias
-
cryptAliasPassword — The password for the public key
configureWSMKeystore(context='/WLS/WC_Domain
', keystoreType='JKS', location='./consumer.jks',keystorePassword='welcome1', signAlias='consumer', signAliasPassword='welcome1', cryptAlias='consumer', cryptAliasPassword='welcome1')
25.5 JKS Command Summary for Extensions to a Typical Topology
Use the following command summary to quickly configure the keystore and DF properties for a multi-domain topology.
WebCenter Side
Use the following keytool
commands to generate the keystore, replacing the values in bold with those for your local environment:
keytool -genkeypair -keyalg RSA -dname "cn=spaces,dc=example,dc=com" -alias webcenter -keypass MyPassword -keystore webcenter.jks -storepass MyPassword -validity 1064
keytool -exportcert -v -alias webcenter -keystore webcenter.jks -storepass MyPassword -rfc -file webcenter_public.cer
SOA Side.
keytool -genkeypair -keyalg RSA -dname "cn=bpel,dc=example,dc=com" -alias bpel -keypass MyPassword -keystore bpel.jks
keytool -exportcert -v -alias bpel -keystore bpel.jks -storepass MyPassword -rfc -file bpel.cer
keytool -importcert -alias webcenter_spaces_ws -file webcenter_public.cer -keystore bpel.jks -storepass welcome1
When prompted to trust the certificate, say yes
.
keytool -importcert -alias webcenter_spaces_ws -file bpel.cer -keystore bpel.jks -storepass MyPassword
Note:
Maintain the name of the alias as 'webcenter_spaces_ws'
.
Configure the SOA Domain Keystore
Run the following WLST command to register the keystore:
configureWSMKeystore(context='/WLS/wc_domain',keystoreType='JKS',location='./bpel.jks',keystorePassword='welcome1',signAlias='producer',signAliasPassword='welcome1',cryptAlias='producer',cryptAliasPassword='welcome1')
Where:
-
wc_domain — TheWebCenter Portal domain
-
signAliasPassword — The password for the public key
-
cryptAlias — The public key alias
-
cryptAliasPassword — The password for the public key