19 Oracle WebCenter Content Custom WLST Commands

This chapter provides detailed descriptions of custom WLST commands for Oracle WebCenter Content, including command syntax, arguments and command examples.

The following sections describe the custom WLST commands for Oracle WebCenter Content. These commands enable you to configure and monitor the Oracle WebCenter Content server and the Oracle WebCenter Content Server instance from the command line. Topics include:

For additional information about Oracle Webcenter Content and Content Server administration and configuration, see Oracle Fusion Middleware Administrator's Guide.

Note:

To use the Oracle Webcenter Content custom commands, you must invoke the WLST script from the Oracle Common home in which the component has been installed. See "Using Custom WLST Commands" in the Oracle Fusion Middleware Administrator's Guide.

19.1 Overview of WLST WebCenter Content Command Categories

WLST WebCenter Content commands are divided into the following categories:

Table 19-1 WLST WebCenter Content Command Categories

Command Category Description

Server Configuration Commands

View and manage server configuration options for the Content Server instance.

Email Configuration Commands

View and manage email configuration options for the Content Server instance.

System Status Commands

View system status information for the Content Server instance.

General Configuration Commands

View and manage general configuration options for the Content Server instance.

Content Security Configuration Commands

View and manage content security configuration options for the Content Server instance.

Component Manager Configuration Commands

View and manage Component Manager configuration options for the Content Server instance.

Records Management Configuration Commands

View and manage records management configuration options for the Content Server instance.

User Interface Commands

View and manage configuration for the optional Oracle WebCenter Content user interface.

User Interface Connection Commands

View and manage connections for the Oracle WebCenter Content user interface introduced in WebCenter Content 11g Release 1 (11.1.1.8)


19.2 WLST WebCenter Content Help

To view the WebCenter Content UCM commands that can be invoked from WLST, enter the following command at the WLST prompt:

help('UCM')

To view help for a specific Oracle Webcenter Content command, specify the name of the command; for example:

help('getUCMServerPort')

help('wccAdfConfig')

19.3 Getter and Setter Methods Implementation

The WLST component for Oracle Webcenter Content uses getter and setter methods to handle a situation where multiple applications register their corresponding Mbeans on a managed server, but WLST can talk to only one application.

Getter Method

The getter method is designed to handle zero or one argument.

If you do not provide an argument to an WLST WebCenter Content command, then one of two things occurs:

  • If only one application has registered its Mbean on the server, then the WLST WebCenter Content command should work successfully and display the output.

  • If multiple applications have registered Mbeans on the server, then an error message is displayed to prompt you to enter the specific application name in the argument.

If there is one argument to an WLST WebCenter Content command, then the following occurs:

  • You must enter the correct application name when entering an argument. If the name is not entered properly, then an error message is displayed to prompt you to enter the valid application name in the argument.

Setter Method

The setter method is designed to handle one or two arguments.

  • The first argument is the value to which you want to set the parameter.

  • The second argument is the application name, which can be null or a string.

19.4 Server Configuration Commands

Use the commands in Table 19-2 to configure the Oracle WebCenter Content Server instance.

Before you use these custom commands, set up the initial WLST connection as follows:

  1. Set the environment variable ORACLE_HOME to <Middleware_Home>/Oracle_ECM1.

  2. Run the WLST script from the following location: <middleware_home>/Oracle_ECM1/common/bin.

  3. Connect to the WebCenter Content Server instance using the connect() command, for example, connect("weblogic","password","t3://localhost:16200").

Table 19-2 WLST Server Configuration Commands

Use this command... To... Use with WLST...

getUCMHttpServerAddress

Display the HTTP Server Address value.

Online

getUCMServerPort

Display the Intradoc Server Port configuration parameter.

Online

setUCMServerPort

Set the Intradoc Server Port configuration parameter.

Online

getUCMIpAddressFilter

Display the IP Address Filter value.

Online

setUCMIpAddressFilter

Set the IP Address Filter value.

Online

getUCMUseSSL

Display the Use SSL value.

Online


19.4.1 getUCMHttpServerAddress

Use with WLST: Online

19.4.1.1 Description

Gets the HTTP Server Address value from the config.cfg file and displays it.

19.4.1.2 Syntax

getUCMHttpServerAddress(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.4.1.3 Example

The following command displays the Oracle Webcenter Content HTTP server address for the application "Oracle Universal Content Management - Content Server":

getUCMHttpServerAddress('Oracle Universal Content Management - Content Server')
server.example.com

19.4.2 getUCMServerPort

Use with WLST: Online

19.4.2.1 Description

Gets the Intradoc Server Port configuration parameter from the config.cfg file and displays it.

19.4.2.2 Syntax

getUCMServerPort(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.4.2.3 Example

The following command displays the Intradoc Server Port value for the application "Oracle Universal Content Management - Content Server":

getUCMServerPort('Oracle Universal Content Management - Content Server')
4442

19.4.3 setUCMServerPort

Use with WLST: Online

19.4.3.1 Description

Sets the Server Port configuration parameter.

19.4.3.2 Syntax

setUCMServerPort(value,['appName'])
Argument Definition
value Server Port number. This number must be a positive integer between 0 and 65535.
appName Optional. Name of the deployed application.

19.4.3.3 Example

The following command sets the Server Port configuration parameter for the application '"Oracle Universal Content Management - Content Server":

setUCMServerPort(4442,'Oracle Universal Content Management - Content Server')

19.4.4 getUCMIpAddressFilter

Use with WLST: Online

19.4.4.1 Description

Gets the IP Address Filter value from the config.cfg file and displays it.

19.4.4.2 Syntax

getUCMIPpAddressFilter(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.4.4.3 Example

The following command displays the IP address filter value for the application "Oracle Universal Content Management - Content Server":

getUCMIpAddressFilter('Oracle Universal Content Management - Content Server')
10.131.123.*

19.4.5 setUCMIpAddressFilter

Use with WLST: Online

19.4.5.1 Description

Sets the Webcenter Content IP Address Filter value.

19.4.5.2 Syntax

setUCMIpAddressFilter(value,['appName'])
Argument Definition
value WebCenter Content IP Address Filter number. This number must be of "*.*.*.*" format or IPV6 Format. The value must be taken from a list of IP Addresses allowed to communicate with the Content Server instance through the Intradoc Server Port.
appName Optional. Name of the deployed application.

19.4.5.3 Example

The following command sets the value for the WebCenter Content IP address filter for the application "Oracle Universal Content Management - Content Server":

setUCMIpAddressFilter(10.131.123.*,'Oracle Universal Content Management - Content Server')

19.4.6 getUCMUseSSL

Use with WLST: Online

19.4.6.1 Description

Gets the Use SSL value from the config.cfg file and displays it. The value can be True or False.

19.4.6.2 Syntax

getUCMUseSSL(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.4.6.3 Example

The following command displays the Use SSL value for the application "Oracle Universal Content Management - Content Server":

getUCMUseSSL('Oracle Universal Content Management - Content Server')
True

19.5 Email Configuration Commands

Use the commands in Table 19-3 to configure email for the Oracle WebCenter Content Server instance.

Table 19-3 WLST E-Mail Configuration Commands

Use this command... To... Use with WLST...

getUCMMailServer

Display the Mail Server value.

Online

setUCMMailServer

Set the Mail Server value.

Online

getUCMSmtpPort

Display the SMTP Port value.

Online

getUCMSysAdminAddress

Display the Admin Address value.

Online

setUCMSysAdminAddress

Set the Admin Address value.

Online


19.5.1 getUCMMailServer

Use with WLST: Online

19.5.1.1 Description

Gets the Mail Server value from the config.cfg file and displays it.

19.5.1.2 Syntax

getUCMMailServer(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.5.1.3 Example

The following command displays the Mail Server value for the application "Oracle Universal Content Management - Content Server":

getUCMMailServer('Oracle Universal Content Management - Content Server')
mymailserver.example.com

19.5.2 setUCMMailServer

Use with WLST: Online

19.5.2.1 Description

Sets the Mail Server value in the config.cfg file.

19.5.2.2 Syntax

setUCMMailServer(value,['appName'])
Argument Definition
value Value for the Mail Server. The value is the name of the mail server that the Content Server instance uses to send SMTP based email.
appName Optional. Name of the deployed application.

19.5.2.3 Example

The following command sets the value for the Mail Server for the application "Oracle Universal Content Management - Content Server":

setUCMMailServer(mymailserver.example.com,'Oracle Universal Content Management - Content Server')

19.5.3 getUCMSmtpPort

Use with WLST: Online

19.5.3.1 Description

Gets the SMTP Port value in the config.cfg file and displays it.

19.5.3.2 Syntax

getUCMSmtpPort(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.5.3.3 Example

The following command displays the SMTP port value for the application "Oracle Universal Content Management - Content Server":

getUCMSmtpPort('Oracle Universal Content Management - Content Server')
4055

19.5.4 getUCMSysAdminAddress

Use with WLST: Online

19.5.4.1 Description

Gets the Admin Address value from the config.cfg file and displays it. The value can be of the form abc@xyz.def.

19.5.4.2 Syntax

getUCMSysAdminAddress(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.5.4.3 Example

The following command displays the Admin Address value for the application "Oracle Universal Content Management - Content Server":

getUCMSysAdminAddress('Oracle Universal Content Management - Content Server')
mymail@example.com

19.5.5 setUCMSysAdminAddress

Use with WLST: Online

19.5.5.1 Description

Sets the Admin Address value in the config.cfg file.

19.5.5.2 Syntax

setUCMSysAdminAddress(value,['AppName'])
Argument Definition
value Value for the Admin Address. The Admin Address can be of the form abc@xyz.def.
appName Optional. Name of the deployed application.

19.5.5.3 Example

The following command sets the Admin Address value for the application "Oracle Universal Content Management - Content Server":

setUCMSysAdminAddress(mymail@example.com,'Oracle Universal Content Management - Content Server')

19.6 System Status Commands

Use the commands in Table 19-4 to configure additional settings to monitor the WebCenter Content Server instance.

Table 19-4 WLST Additional Configuration Commands

Use this command... To... Use with WLST...

getUCMCSVersion

Display the version number.

Online

getUCMServerUptime

Display the uptime value.

Online


19.6.1 getUCMCSVersion

Use with WLST: Online

19.6.1.1 Description

Gets the version number of the Content Server running instance.

19.6.1.2 Syntax

getUCMCSVersion(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.6.1.3 Example

The following command displays the version number of the active instance of the application "Oracle Universal Content Management - Content Server":

getUCMCSVersion('Oracle Universal Content Management - Content Server')
11g R1

19.6.2 getUCMServerUptime

Use with WLST: Online

19.6.2.1 Description

Gets the amount of time the Content Server instance has been up.

19.6.2.2 Syntax

getUCMServerUptime(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.6.2.3 Example

The following command displays the amount of time the application "Oracle Universal Content Management - Content Server" has been up:

getUCMServerUptime('Oracle Universal Content Management - Content Server')
00H:01 Min:12 Sec

19.7 General Configuration Commands

Use the commands in Table 19-5 to configure general configuration options for the Oracle WebCenter Content Server instance.

Table 19-5 WLST General Configuration Options Commands

Use this command... To... Use with WLST...

getUCMOverRideFormat

Display the OverRideFormat value.

Online

setUCMOverRideFormat

Set the OverRideFormat value.

Online

getUCMDownloadApplet

Display the DownloadApplet value.

Online

setUCMDownloadApplet

Set the DownloadApplet value.

Online

getUCMMultiUpload

Display the MultiUpload value.

Online

setUCMMultiUpload

Set the MultiUpload value.

Online

getUCMUseAccounts

Display the UseAccount value.

Online

setUCMUseAccounts

Set the UseAccount value.

Online

getUCMIsAutoNumber

Display the AutoNumber value.

Online

setUCMIsAutoNumber

Set the AutoNumber value.

Online

getUCMAutoNumberPrefix

Display the AutoNumberPrefix value.

Online

setUCMAutoNumberPrefix

Set the AutoNumberPrefix value.

Online

getUCMMajorRevLabelSeq

Display the MajorRevLabelSeq value.

Online

setUCMMajorRevLabelSeq

Set the MajorRevLabelSeq value.

Online

getUCMMinorRevLabelSeq

Display the MinorRevLabelSeq value.

Online

setUCMMinorRevLabelSeq

Set the MinorRevLabelSeq value.

Online

getUCMJspServerEnabled

Display the JspServerEnabled value

Online

setUCMJspServerEnabled

Set the JspServerEnabled value.

Online

getUCMJspEnabledGroups

Display the JspEnabledGroups value.

Online

setUCMJspEnabledGroups

Set the JspEnabledGroups value.

Online


19.7.1 getUCMOverRideFormat

Use with WLST: Online

19.7.1.1 Description

Gets the value from the config.cfg file, indicating whether the OverrideFormat parameter is set. The OverrideFormat parameter enables users to choose the application format of their content items.

19.7.1.2 Syntax

getUCMOverRideFormat(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.7.1.3 Example

The following command displays the OverRideFormat parameter value:

getUCMOverRideFormat()
true

19.7.2 setUCMOverRideFormat

Use with WLST: Online

19.7.2.1 Description

Sets the OverrideFormat parameter to enable or disable the ability for users to choose the application format of their content items.

19.7.2.2 Syntax

getUCMOverRideFormat('value',['appName'])
Argument Definition
value Specifies whether to enable or disable the OverrideFormat option. Values can be: Yes, No, True, False, 1, 0.
appName Optional. Name of the deployed application.

19.7.2.3 Example

The following command enables the OverRideFormat parameter:

getUCMOverRideFormat('True')

19.7.3 getUCMDownloadApplet

Use with WLST: Online

19.7.3.1 Description

Gets the value from the config.cfg file indicating whether the DownloadApplet parameter is set. DownloadApplet enables users to download multiple files from a search results page.

19.7.3.2 Syntax

getUCMDownloadApplet(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.7.3.3 Example

The following command gets the value for the DownloadApplet parameter:

getUCMDownloadApplet()
true

19.7.4 setUCMDownloadApplet

Use with WLST: Online

19.7.4.1 Description

Sets the DownloadApplet parameter value to enable or disable the ability for users to download multiple files from a search results page.

19.7.4.2 Syntax

setUCMDownloadApplet('value',['appName'])
Argument Definition
value Specifies whether to enable or disable the DownloadApplet option. Values can be: Yes, No, True, False, 1, 0.
appName Optional. Name of the deployed application.

19.7.4.3 Example

The following command sets the value for the DownloadApplet to enable the functionality:

setUCMDownloadApplet('Yes')

19.7.5 getUCMMultiUpload

Use with WLST: Online

19.7.5.1 Description

Gets the value from the config.cfg file indicating whether the MultiUpload parameter is set. MultiUpload allows multiple files to be zipped and checked in as a single content item.

19.7.5.2 Syntax

getUCMMultiUpload(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.7.5.3 Example

The following command displays the value for the MultiUpload parameter:

getUCMMultiUpload()
true

19.7.6 setUCMMultiUpload

Use with WLST: Online

19.7.6.1 Description

Sets the MultiUpload parameter value to allow or disallow multiple files to be zipped and checked in as a single content item.

19.7.6.2 Syntax

setUCMMultiUpload('value',['appName'])
Argument Definition
value Specifies whether to enable or disable the MultiUpload option. Values can be: Yes, No, True, False, 1, 0.
appName Optional. Name of the deployed application.

19.7.6.3 Example

The following command sets MultiUpload to allow multiple files to be zipped and check in as a single content item:

setUCMMultiUpload('1')

19.7.7 getUCMUseAccounts

Use with WLST: Online

19.7.7.1 Description

Gets the value from the config.cfg file indicating whether the UseAccounts parameter is set. UseAccounts enables the use of accounts in Oracle WebCenter Content.

19.7.7.2 Syntax

getUCMUseAccounts(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.7.7.3 Example

The following command displays the value for the UseAccounts option:

getUCMUseAccounts()
True

19.7.8 setUCMUseAccounts

Use with WLST: Online

19.7.8.1 Description

Sets the UseAccounts parameter value to enable to disable the use of accounts in Oracle WebCenter Content.

19.7.8.2 Syntax

setUCMUseAccounts('value',['appName'])
Argument Definition
value Specifies whether to enable or disable the UseAccounts option. Values can be: Yes, No, True, False, 1, 0.
appName Optional. Name of the deployed application.

19.7.8.3 Example

The following command sets UseAccounts to enable accounts in Oracle WebCenter Content:

setUCMUseAccounts('True')

19.7.9 getUCMIsAutoNumber

Use with WLST: Online

19.7.9.1 Description

Gets the value from the config.cfg file indicating whether the IsAutoNumber parameter is set. The IsAutoNumber parameter enables automatic numbering of Content IDs.

19.7.9.2 Syntax

getUCMIsAutoNumber(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.7.9.3 Example

The following command displays the value for the IsAutoNumber parameter:

getUCMIsAutoNumber()
True

19.7.10 setUCMIsAutoNumber

Use with WLST: Online

19.7.10.1 Description

Sets the IsAutoNumber parameter value to enable or disable automatic numbering of Content IDs.

19.7.10.2 Syntax

setUCMIsAutoNumber('value',['appName'])
Argument Definition
value Specifies whether to enable or disable the AutoNumber option. Values can be: Yes, No, True, False, 1, 0.
appName Optional. Name of the deployed application.

19.7.10.3 Example

The following command sets IsAutoNumber to enable automatic numbering of Content IDs:

setUCMIsAutoNumber('True')

19.7.11 getUCMAutoNumberPrefix

Use with WLST: Online

19.7.11.1 Description

Gets the value from the config.cfg file for the AutoNumberPrefix parameter. The prefix is used in all automatically numbered content IDs for newly checked-in files, if the AutoNumber parameter is enabled.

19.7.11.2 Syntax

getUCMAutoNumberPrefix(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.7.11.3 Example

The following command displays the value for the AutoNumberPrefix parameter:

getUCMAutoNumberPrefix()
dadvml0231usor

19.7.12 setUCMAutoNumberPrefix

Use with WLST: Online

19.7.12.1 Description

Sets the AutoNumberPrefix parameter value to a prefix used in all automatically numbered content IDs for newly checked-in files (if the AutoNumber parameter is enabled).

19.7.12.2 Syntax

setUCMUseAutoNumberPrefix('value',['appName'])
Argument Definition
value The prefix used in all automatically numbered content IDs for newly checked-in files. Only applies if the AutoNumber parameter is enabled.
appName Optional. Name of the deployed application.

19.7.12.3 Example

The following command sets the AutoNumberPrefix:

setUCMAutoNumberPrefix('dadvml0231usor')

19.7.13 getUCMMajorRevLabelSeq

Use with WLST: Online

19.7.13.1 Description

Gets the value from the config.cfg file for MajorRevLabelSeq, which defines the major sequence for revision numbers. MajorRevLabelSeq is the first part of the Revision Label.

19.7.13.2 Syntax

getUCMMajorRevLabelSeq(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.7.13.3 Example

The following command displays the value for the MajorRevLabelSeq parameter:

getUCMMajorRevLabelSeq()
A1

19.7.14 setUCMMajorRevLabelSeq

Use with WLST: Online

19.7.14.1 Description

Sets the value for the MajorRevLabelSeq parameter, which defines the major sequence for revision numbers. MajorRevLabelSeq is the first part of the Revision Label.

19.7.14.2 Syntax

setUCMMajorRevLabelSeq('value',['appName'])
Argument Definition
value Value can be any of the following: A through D, 1 through 8.
appName Optional. Name of the deployed application.

19.7.14.3 Example

The following command sets MajorRevLabelSeq to 'A1':

setUCMMajorRevLabelSeq('A1')

19.7.15 getUCMMinorRevLabelSeq

Use with WLST: Online

19.7.15.1 Description

Gets the value from the config.cfg file for MinorRevLabelSeq, which defines the minor sequence for revision numbers. MinorRevLabelSeq is the second part of the Revision Label.

19.7.15.2 Syntax

getUCMMinorRevLabelSeq(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.7.15.3 Example

The following command displays the value for the MinorRevLabelSeq parameter:

getUCMMinorRevLabelSeq()
b2

19.7.16 setUCMMinorRevLabelSeq

Use with WLST: Online

19.7.16.1 Description

Sets the value for the MinorRevLabelSeq parameter, which defines the minor sequence for revision numbers. MinorRevLabelSeq is the second part of the Revision Label.

19.7.16.2 Syntax

setUCMMinorRevLabelSeq('value',['appName'])
Argument Definition
value Value can be any of the following: a through c, 1 through 7.
appName Optional. Name of the deployed application.

19.7.16.3 Example

The following command sets MinorRevLabelSeq to 'b2':

setUCMMinorRevLabelSeq('b2')

19.7.17 getUCMJspServerEnabled

Use with WLST: Online

19.7.17.1 Description

Gets the value from the config.cfg file indicating whether the JspServerEnabled is set. If the parameter is turned on, Content Server can execute Java Server Pages. The Java Server Pages must be checked in to Content Server.

19.7.17.2 Syntax

getUCMJspServerEnabled(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.7.17.3 Example

The following command displays the value for the JspServerEnabled parameter:

getUCMJspServerEnabled()
true

19.7.18 setUCMJspServerEnabled

Use with WLST: Online

19.7.18.1 Description

Sets the value for the JspServerEnabled parameter. If the parameter is turned on, Content Server can execute Java Server Pages. The Java Server Pages must be checked in to Content Server.

19.7.18.2 Syntax

setUCMJspServerEnabled('value',['appName'])
Argument Definition
value Specifies whether to enable or disable the parameter. Values can be: Yes, No, True, False, 1, 0.
appName Optional. Name of the deployed application.

19.7.18.3 Example

The following command sets JspServerEnabled to 'true':

setUCMJspServerEnabled('true')

19.7.19 getUCMJspEnabledGroups

Use with WLST: Online

19.7.19.1 Description

Gets the value from the config.cfg file for the JspEnabledGroups parameter and lists is. JspEnabledGroups lists security groups enabled for Java Server Page functionality. Security groups have certain permissions for contributors and administrators.

19.7.19.2 Syntax

getUCMJspEnabledGroups(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.7.19.3 Example

The following command displays the value for the JspEnabledGroups parameter:

getUCMJspEnabledGroups()
group1
Jsp

19.7.20 setUCMJspEnabledGroups

Use with WLST: Online

19.7.20.1 Description

Sets the value for the JspEnabledGroups parameter, which specifies security groups to be enabled for Java Server Page functionality.

19.7.20.2 Syntax

setUCMJspEnabledGroups('value',['appName'])
Argument Definition
value Specifies the security groups to be enabled for Java Server Page functionality.
appName Optional. Name of the deployed application.

19.7.20.3 Example

The following command sets JspEnabledGroups to 'group1':

setUCMJspEnabledGroups('group1')

19.8 Content Security Configuration Commands

Use the commands in Table 19-6 to configure content security options for the Oracle WebCenter Content Server instance.

Table 19-6 WLST Content Security Configuration Commands

Use this command... To... Use with WLST...

getUCMCopyAccess

Display the CopyAccess parameter value.

Online

setUCMCopyAccess

Set the CopyAccess parameter value.

Online

getUCMExclusiveCheckout

Display the ExclusiveCheckout parameter value.

Online

setUCMExclusiveCheckout

Set the ExclusiveCheckout parameter value.

Online

getUCMAuthorDelete

Display the AuthorDelete parameter value.

Online

setUCMAuthorDelete

Set the AuthorDelete parameter value.

Online

getUCMShowOnlyKnownAccounts

Display the ShowOnlyKnownAccounts parameter value.

Online

setUCMShowOnlyKnownAccounts

Set the ShowOnlyKnownAccounts parameter value.

Online


19.8.1 getUCMCopyAccess

Use with WLST: Online

19.8.1.1 Description

Gets the value from the config.cfg file and displays it. When CopyAccess is enabled, users with Read privilege on a content item can get a copy of the native file.

19.8.1.2 Syntax

getUCMCopyAccess(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.8.1.3 Example

The following command displays the CopyAccess value:

getUCMCopyAccess()
True

19.8.2 setUCMCopyAccess

Use with WLST: Online

19.8.2.1 Description

Sets the CopyAccess value in the config.cfg file. When CopyAccess is enabled, users with Read privilege on a content item can get a copy of the native file.

19.8.2.2 Syntax

setUCMCopyAccess('value',['appName'])
Argument Definition
value Specifies whether to enable or disable the parameter. Values can be: Yes, No, True, False, 1, 0.
appName Optional. Name of the deployed application.

19.8.2.3 Example

The following command sets the value to enable the CopyAccess parameter:

setUCMCopyAccess('True')

19.8.3 getUCMExclusiveCheckout

Use with WLST: Online

19.8.3.1 Description

Gets the value in the config.cfg file and displays it. When the ExclusiveCheckout parameter is enabled, Admin privilege is required to check out a content item checked in by another user.

19.8.3.2 Syntax

getUCMExclusiveCheckout(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.8.3.3 Example

The following command displays the value for the ExclusiveCheckout parameter:

getUCMExclusiveCheckout()
True

19.8.4 setUCMExclusiveCheckout

Use with WLST: Online

19.8.4.1 Description

Sets the value in the config.cfg file. When the ExclusiveCheckout parameter is enabled, Admin privilege is required to check out a content item checked in by another user.

19.8.4.2 Syntax

setUCMExclusiveCheckout('value',['appName'])
Argument Definition
value Specifies whether to enable or disable the parameter. Values can be: Yes, No, True, False, 1, 0.
appName Optional. Name of the deployed application.

19.8.4.3 Example

The following command sets the value to enable the ExclusiveCheckout parameter:

setUCMExclusiveCheckout('True')

19.8.5 getUCMAuthorDelete

Use with WLST: Online

19.8.5.1 Description

Gets the value from the config.cfg file and displays it. When the AuthorDelete parameter is enabled, authors are allowed to delete their revisions without having Delete privilege.

19.8.5.2 Syntax

getUCMAuthorDelete(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.8.5.3 Example

The following command displays the AuthorDelete parameter value:

getUCMAuthorDelete()
1

19.8.6 setUCMAuthorDelete

Use with WLST: Online

19.8.6.1 Description

Sets the AuthorDelete parameter value in the config.cfg file. When the AuthorDelete parameter is enabled, authors are allowed to delete their revisions without having Delete privilege.

19.8.6.2 Syntax

setUCMAuthorDelete('value',['appName'])
Argument Definition
value Specifies whether to enable or disable the parameter. Values can be: Yes, No, True, False, 1, 0.
appName Optional. Name of the deployed application.

19.8.6.3 Example

The following command enables the AuthorDelete parameter:

setUCMAuthorDelete('1')

19.8.7 getUCMShowOnlyKnownAccounts

Use with WLST: Online

19.8.7.1 Description

Gets the value from the config.cfg file and displays it. When the ShowOnlyKnownAccounts parameter is enabled, the list of Content Server accounts on a check-in page will contain only globally-predefined accounts.

19.8.7.2 Syntax

getUCMShowOnlyKnownAccounts(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.8.7.3 Example

The following command displays the ShowOnlyKnownAccounts parameter value as enabled:

getUCMShowOnlyKnownAccounts()
Yes

19.8.8 setUCMShowOnlyKnownAccounts

Use with WLST: Online

19.8.8.1 Description

Sets the ShowOnlyKnownAccount parameter value in the config.cfg file. When the ShowOnlyKnownAccounts parameter is enabled, the list of Content Server accounts on a check-in page will contain only globally-predefined accounts.

19.8.8.2 Syntax

setUCMShowOnlyKnownAccounts('value',['appName'])
Argument Definition
value Specifies whether to enable or disable the parameter. Values can be: Yes, No, True, False, 1, 0.
appName Optional. Name of the deployed application.

19.8.8.3 Example

The following command enables the ShowOnlyKnownAccounts parameter:

setUCMShowOnlyKnownAccounts('yes')

19.9 Component Manager Configuration Commands

Use the commands in Table 19-7 to configure Component Manager options for the Oracle WebCenter Content Server instance.

Table 19-7 WLST Component Manager Configuration Commands

Use this command... To... Use with WLST...

getUCMComponentStatus

Display the status of a component.

Online

setUCMComponentStatus

Set the status of a component.

Online

installUCMComponent

Install a component.

Online

uninstallUCMComponent

Uninstall a component.

Online

getUCMComponentConfig

Display the configuration for a component.

Online

updateUCMComponentConfig

Set configuration parameters for a component.

Online


19.9.1 getUCMComponentStatus

Use with WLST: Online

19.9.1.1 Description

Gets the status of a component. The status can be enabled or disabled.

19.9.1.2 Syntax

getUCMComponentStatus('componentName',['appName'])
Argument Definition
componentName Specifies a valid Content Server component name. For example, 'ContentFolios'.
appName Optional. Name of the deployed application.

19.9.1.3 Example

The following command displays the status of the component "ContentFolios':

getUCMComponentStatus('ContentFolios')
Enabled

19.9.2 setUCMComponentStatus

Use with WLST: Online

19.9.2.1 Description

Sets the status of a component in the config.cfg file.

19.9.2.2 Syntax

setUCMComponentStatus('componentName','status',['appName'])
Argument Definition
componentName Specifies a valid Content Server component name. For example, 'ContentFolios'.
status Specifies whether the status of the component is enabled or disabled. Values can be: Enable, Disable.
appName Optional. Name of the deployed application.

19.9.2.3 Example

The following command sets the status of 'ContentFolios' to 'Enable':

setUCMComponentStatus('ContentFolios','Enable')

19.9.3 installUCMComponent

Use with WLST: Online

19.9.3.1 Description

Installs the component present at the specified file location.

19.9.3.2 Syntax

installUCMComponent('filePath',['appName'])
Argument Definition
filePath Specifies a valid file path to a component.
appName Optional. Name of the deployed application.

19.9.3.3 Example

The following command installs the component at the location 'C:/manifest.zip':

installUCMComponent('C:/manifest.zip')

19.9.4 uninstallUCMComponent

Use with WLST: Online

19.9.4.1 Description

Uninstalls the specified component.

19.9.4.2 Syntax

uninstallUCMComponent('componentName',['appName'])
Argument Definition
componentName Specifies a valid Content Server component name. For example, 'ContentFolios'.
appName Optional. Name of the deployed application.

19.9.4.3 Example

The following command uninstalls the component named 'ContentFolios':

uninstallUCMComponent('ContentFolios')

19.9.5 downloadUCMComponent

Use with WLST: Online

19.9.5.1 Description

Downloads the specified component to the specified file location.

19.9.5.2 Syntax

downloadUCMComponent('componentName','filePath',['appName'])
Argument Definition
componentName Specifies a valid Content Server component name. For example, 'ContentFolios'.
filePath Specifies a valid file path to a component.
appName Optional. Name of the deployed application.

19.9.5.3 Example

The following command downloads the component 'ContentFolios' to 'C:/manifest.zip':

downloadUCMComponet('ContentFolios', 'C:/manifest.zip')

19.9.6 getUCMComponentConfig

Use with WLST: Online

19.9.6.1 Description

Gets the configuration of the specified component and displays it.

19.9.6.2 Syntax

getUCMComponentConfig('componentName',['appName'])
Argument Definition
componentName Specifies a valid component name. For example, 'ContentFolios'.
appName Optional. Name of the deployed application.

19.9.6.3 Example

The following command displays the configuration for the component 'ContentFolios':

getUCMComponentConfig('ContentFolios')

19.9.7 updateUCMComponentConfig

Use with WLST: Online

19.9.7.1 Description

Sets the specified component with the configuration options provided.

19.9.7.2 Syntax

updateUCMComponentConfig('componentName','updateParams',['appName'])
Argument Definition
componentName Specifies a valid component name. For example, 'Folders_g'.
updateParams Specifies valid parameters for the component.
appName Optional. Name of the deployed application.

19.9.7.3 Example

The following command sets configuration parameters for the component 'Folders_g':

updateUCMComponentConfig('Folders_g','GetCopyAccess:true,CollectionHiddenMeta:xHidden')

19.10 Records Management Configuration Commands

Use the commands in Table 19-8 to configure records management options for the Oracle WebCenter Content Server instance.

Table 19-8 WLST Records Management Configuration Commands

Use this command... To... Use with WLST...

getRMLevel

Display the type of records management configuration.

Online

getRMConfigurationLevel

Display the records management configuration level.

Online

getRMFeatures

Display records management features.

Online

getRMDispositionActions

Display records management dispositions actions.

Online

rmUpdate

Update the records management configuration.

Online

addOutgoingProvider

Add an outgoing provider for the Adapter server used to store records management content.

Online

registerSource

Register the source for the Adapter server repository so records management can find it.

Online


19.10.1 getRMLevel

Use with WLST: Online

19.10.1.1 Description

Gets the type of records management configuration and displays it. The type can have the following values:

  • none

  • standalone

  • adapter

19.10.1.2 Syntax

getRMLevel(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.10.1.3 Example

The following command displays the type of records management configuration:

getRMLevel()
adapter

19.10.2 getRMConfigurationLevel

Use with WLST: Online

19.10.2.1 Description

Gets the records management configuration level and displays it. The configuration level can have the following values:

  • minimal: Enables minimal amount of functionality and excludes some disposition actions and most of the application features. This is the default when the software is enabled.

  • typical: Enables all disposition actions and all features except for DoD Configuration, Classified Topics, FOIA/PA tracking (Freedom of Information Act/Privacy Act), and E-mail.

  • dod2: Enables the features from a Typical installation with the addition of DoD Configuration and E-mail.

  • dodclassified: Enables all features except for FOIA/PA.

  • custom: Enables the ability to choose a variety of features. Some disposition actions are dependent on other actions. If an action is selected, dependent actions are also automatically selected.

19.10.2.2 Syntax

getRMConfigurationLevel(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.10.2.3 Example

The following command displays the type of records management configuration:

getRMConfigurationLevel(['appName'])
minimal

19.10.3 getRMFeatures

Use with WLST: Online

19.10.3.1 Description

Gets a list of records management features and displays it. The list can have the following values:

  • feature_related_content

  • feature_audit_trigger

  • feature_subject_to_review

  • feature_revision_dates

  • feature_security_markings

  • feature_email_fields

  • feature_dod_config

  • feature_foia_privacyact

19.10.3.2 Syntax

getRMFeatures(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.10.3.3 Example

The following command displays the records management features:

getRMFeatures()
feature_related_content
feature_audit_trigger
feature_subject_to_review

19.10.4 getRMDispositionActions

Use with WLST: Online

19.10.4.1 Description

Gets the values for records management disposition actions and displays them. The list can have the following values:

  • actions_activate

  • actions_obsolete

  • actions_cancel

  • actions_rescind

  • actions_expire

  • actions_cutoff

  • actions_approve_deletion

  • actions_destroy

19.10.4.2 Syntax

getRMDispositionActions(['appName'])
Argument Definition
appName Optional. Name of the deployed application.

19.10.4.3 Example

The following command displays a list of records management disposition actions:

getRMDispositionActions()
actions_active
actions_obsolete
actions_cancel

19.10.5 rmUpdate

Use with WLST: Online

19.10.5.1 Description

Sets the records management configuration with feature and disposition actions and enables it.

19.10.5.2 Syntax

rmUpdate(urmLevel, level, featuresList, dispositionActionsList, enableRTMandURMAgent,['appName'])
Argument Definition
urmLevel Specifies a valid records management configuration type.
level Specifies a valid records management level.
featuresList Specifies valid records management features.
dispositionActionsList Specifies valid disposition actions.
enableRTMandURMAgent Specifies whether to enable the RTM and URM Agent.'.
appName Optional. Name of the deployed application.

19.10.5.3 Example

The following command sets the records management configuration and enables it:

rmUpdate(urmLevel='standalone',level='custom',featuresList='feature_related_content:feature_revision_dates',dispositionActionsList='actions_activate:actions:obsolete',enableRTMandURMAgent='1')

19.10.6 addOutgoingProvider

Use with WLST: Online

19.10.6.1 Description

Defines the outgoing provider that enables the Adapter server to connect to the Content Server instance with records management enabled.

19.10.6.2 Syntax

addOutgoingProvider(ProviderName, ProviderDescription, ServerHostName, HTTPServerAddress, 
ServerPort, InstanceName, RelativeWebRoot, extraUpdateParams,['appName'])
Argument Definition
ProviderName Name of the outgoing provider.
ProviderDescription Description of the outgoing provider.
ServerHostname Name of the server host.
HTTPServerAddress Address of the HTTP server.
ServerPort Number of the server port.
IntanceName Name of the instance for the Content Server with records management enabled.
RelativeWebRoot Name of the relative web root.
extraUpdateParams Extra parameters that can be used are: ClientHostIpFilter, ConnectionPassword, ConnectionPasswordName, IsRefinery, ProviderClass, ProviderConfig, ProviderConnection, RefineryMaxProJobs, RefineryReadOnly.
appName Optional. Name of the deployed application.

19.10.6.3 Example

The following command defines an outgoing provider for the Adapter server to connect to the records management instance.:

addOutgoingProvider(ProviderName='x',ProviderDescription='y',ServerHostName='localhost',HTTPServerAddress='z',ServerPort='4444',InstanceName='w',RelativeWebRoot='cs',updateParams='RefineryMasJobs:100,IsRefinery:1')

19.10.7 registerSource

Use with WLST: Online

19.10.7.1 Description

Registration ensures that records management is aware of the Adapter and is ready to manage the stored content in the Adapter server's repository.

19.10.7.2 Syntax

registerSource(ProviderName, SourceName, SourceTableName, SourceDisplayName, ['appName'])
Argument Definition
ProviderName Name of the outgoing provider.
SourceName Description of the source in the Adapter repository.
SourceTableName Name of the source table in the Adapter repository.
SourceDisplayName Display name for the source in the Adapter repository.
appName Optional. Name of the deployed application.

19.10.7.3 Example

The following command registers the Adapter server's repository source for the records management stored content:

registerSource(ProviderName='x',SourceName='y',SourceTableName='z',SourceDisplayName='w")

19.11 User Interface Commands

Use the commands in Table 19-9 to display and update the configuration of the Oracle WebCenter Content user interface introduced in Oracle WebCenter Content 11g Release 1 (11.1.1.8). For more information about this user interface, see "Getting Started with the WebCenter Content Interface" in Using Oracle WebCenter Content.

These commands can be used only after the WccADFUI.zip file has been installed and enabled on Oracle WebCenter Content.

To use these custom commands, you must invoke the WLST script from the appropriate Oracle home. Do not use the WLST script in the WebLogic Server home. For Oracle WebCenter Content user interface commands, the script is located at:

  • UNIX: WlstResources/common/bin/wlst.sh

  • Windows: WlstResources\common\bin\wlst.cmd

Before you run the WLST script, you must set the WL_HOME environment variable in the UNIX shell or Windows command prompt.

  • UNIX: export WL_HOME=/Oracle/WccUI/wlserver_10.3

  • Windows: set WL_HOME=C:\Oracle\WccUI\wlserver_10.3

Configuration changes made using these WLST commands are only effective after you restart the Managed Server on which the WebCenter Content - Web UI application is deployed.

Table 19-9 WLST WebCenter Content User Interface Commands

Use this command... To... Use with WLST...

displayWccAdfConfig

Display the configuration of the WebCenter Content user interface application.

Online

updateWccAdfConfig

Update the configuration of the WebCenter Content user interface application.

Online


19.11.1 displayWccAdfConfig

Use with WLST: Online

19.11.1.1 Description

Displays the configuration of the Oracle WebCenter Content user interface application.

19.11.1.2 Syntax

displayWccAdfConfig(appName='value',[attrName='value'])
Argument Definition
appName value Name of the deployed application.
attrName value Optional. Name of the attribute to display If omitted all attributes are displayed.

19.11.1.3 Examples

The following command displays all configuration attributes for the Oracle WebCenter Content user interface deployed with the application name "Oracle WebCenter Content - Web UI".

wls:/wccadf_domain/serverConfig> displayWccAdfConfig(appName='Oracle WebCenter Content - Web UI')
WccInstanceName = Default
WccInstanceConnectionName = WccAdfDefaultConnection
ProxyContent = true
DocumentPreview = DOCUMENT_VIEWER
DefaultLocale = en_US
DefaultTimeZone = America/Los_Angeles
ApplicationUrl = null
ClusterCompatible = false
TemporaryDirectory = null
MaximumUploadedFileSize = 52428800
MaximumWindowsPerSession = 10
WccLoginPageEnabled = true
SkinFamily = wcc-skin
SkinVersion = null
CustomBrandingLogo = null
CustomBrandingTitle = null

The following command displays the value of the configuration attribute named "WccInstanceConnectionName".

wls:/wccadf_domain/serverConfig> displayWccAdfConfig(appName='Oracle WebCenter Content - Web UI', attrName='WccInstanceConnectionName')
Attribute WccInstanceConnectionName value is: WccAdfDefaultConnection

19.11.2 updateWccAdfConfig

Use with WLST: Online

19.11.2.1 Description

Updates the configuration of the Oracle WebCenter Content user interface application. The command can be used to update a single attribute or multiple attributes.

19.11.2.2 Syntax

updateWccAdfConfig(appName, [wccInstanceName], [wccInstanceConnectionName],
[proxyContent], [documentPreview], [defaultLocale], [defaultTimeZone], 
[applicationUrl], [clusterCompatible], [temporaryDirectory], 
[maximumUploadedFileSize], [maximumWindowsPerSession], 
[wccLoginPageEnabled], [skinFamily], [skinVersion], [customBrandingLogo], 
[customBrandingTitle])
Argument Definition
appName Name of the deployed application.
wccInstanceName Reserved for future use.
wccInstanceConnectionName Name of the Content Server connection in Connection Architecture (connections.xml).
proxyContent Controls how a browser retrieves document content, including the native file, the web-viewable rendition, thumbnails, and attachments. Must be "true" or "false". If "true" the browser requests this content from the Oracle WebCenter Content user interface, which in turn retrieves it from Content Server. If "false" the browser requests this content directly from Content Server.
documentPreview Controls the preview displayed for a document. Must be one of the following case-sensitive values:
  • DOCUMENT_VIEWER: Use the document viewer (if available)

  • WEB_VIEWABLE: Display the web-viewable rendition (if available)

  • NONE: No preview

defaultLocale Locale to use if a user's locale cannot be otherwise determined. Must be in the format used by the Java class java.util.Locale (for example, "en_US").
defaultTimeZone Time zone to use if the user's time zone cannot be otherwise determined. Must be in the format used by the Java method java.util.TimeZone#getTimeZone (for example, "America/Los_Angeles")
applicationUrl Specifies the scheme, hostname, and port of URLs generated by the Oracle WebCenter Content user interface (for example, https://wcc.example.com:16225). Optional. If not set, the scheme, hostname, and port are determined from the HTTP request.
clusterCompatible Specifies whether the Oracle WebCenter Content user interface supports session replication among nodes in a cluster. Either "true" or "false". Must be "true" if session replication is enabled on the Java EE Web Container.
temporaryDirectory Base directory for temporary files created by the Oracle WebCenter Content user interface, such as in-progress uploads. This directory should be empty, on a fast file system with adequate free space, and readable and writable by only the owner of the process running the Oracle WebCenter Content user interface. The Oracle WebCenter Content user interface will create and manage a subdirectory structure. If clusterCompatible is "true" this directory must also be on a filesystem shared across all nodes in the cluster. Oracle recommends setting this attribute even if clusterCompatible is "false". If not set, the value of the Java system property java.io.tmpdir is used.
maximumUploadedFileSize Maximum size of uploaded files (in bytes). If less than zero, there is no maximum size. If zero, file upload is disabled.
maximumWindowsPerSession Maximum number of active windows (or browser tabs, depending on browser configuration) per session. When this limit is reached, the least recently used window expires and subsequent interaction with that window displays an error message.

The Oracle WebCenter Content user interface main page, wccmain, does not contribute to the session's window count and only expires when the session expires or is logged out. The document properties page, wccdoc, counts as two windows if documentPreview is "DOCUMENT_VIEWER", but counts as one window if documentPreview is "WEB_VIEWABLE" or "NONE".

Use this attribute to control the maximum application server memory consumed by each session. Set to 0 to not limit the number of windows per session.

wccLoginPageEnabled Specifies whether the "wcclogin" page is enabled or disabled. Either "true" or "false". When Single Sign-On (SSO) authentication is enabled, the attribute value should be set to "false" to prevent users from using the "wcclogin" page instead of SSO.
skinFamily Name of the skin family. The <skin-family> element in trinidad-config.xml is set to the value of this attribute.
skinVersion Skin version. The <skin-version> element in trinidad-config.xml is set to the value of this attribute. Optional. If not set, no skin version is specified.
customBrandingLogo HTTP URL of an image to display in the branding bar. Optional. If not set, a default image is displayed.
customBrandingTitle The title to display in the branding bar. Optional. If not set, a default title is displayed.

19.11.2.3 Examples

The following command sets the proxyContent attribute to "true" for the Oracle WebCenter Content user interface deployed with the application name "Oracle WebCenter Content - Web UI". With this setting, browsers will retrieve document content from the Oracle WebCenter Content user interface, rather than directly from Content Server.

updateWccAdfConfig(appName='Oracle WebCenter Content - Web UI', proxyContent=true)

The following command sets the defaultLocale attribute to "en_US" and the defaultTimeZone attribute to "America/Los_Angeles". If the Oracle WebCenter Content user interface cannot determine a user's preferred locale and time zone (for example, based on user preferences), it will default to the English language and display times using the America/Los_Angeles time zone.

updateWccAdfConfig(appName='Oracle WebCenter Content - Web UI', defaultLocale='en_US', defaultTimeZone='America/Los_Angeles')

The following command sets the temporaryDirectory attribute to "/tmp/wcc". The Oracle WebCenter Content user interface will store temporary files in this directory on the application server.

updateWccAdfConfig(appName='Oracle WebCenter Content - Web UI', temporaryDirectory='/tmp/wcc')

The following command sets the wccLoginPageEnagled property to "false". This prevents users from authenticating to the Oracle WebCenter Content user interface using its "wcclogin" page, requiring them to use Single Sign-On (SSO).

updateWccAdfConfig(appName='Oracle WebCenter Content - Web UI', wccLoginPageEnabled=false)

19.12 User Interface Connection Commands

Use the commands in Table 19-10 to manage connections for the Oracle WebCenter Content user interface introduced in WebCenter Content 11g Release 1 (11.1.1.8). For more information about this user interface, see "Getting Started with the WebCenter Content Interface" in Using Oracle WebCenter Content.

These commands can be used only after the WccADFUI.zip file has been installed and enabled on Oracle WebCenter Content. To use these custom commands, you must invoke the WLST script from the appropriate Oracle home. Do not use the WLST script in the WebLogic Server home. For the Oracle WebCenter Content user interface commands, the script is located at:

  • UNIX: ConnArchWlstResources/common/bin/manageconnwlst.sh

  • Windows: ConnArchWlstResources\common\bin\manageconnwlst.cmd

Before you run the WLST script, you must set the WL_HOME environment variable in the UNIX shell or Windows command prompt.

  • UNIX: export WL_HOME=/Oracle/WccUI/wlserver_10.3

  • Windows: set WL_HOME=C:\Oracle\WccUI\wlserver_10.3

Configuration changes made using these WLST commands are only effective after you restart the Managed Server on which the WebCenter Content - Web UI application is deployed.

Table 19-10 WLST WebCenter Content User Interface Connection Commands

Use this command... To... Use with WLST...

createRIDCConnection

Create a new RIDC connection.

Online

updateRIDCConnection

Update existing RIDC connection properties.

Online

listRIDCConnections

List all the RIDC connection Mbeans present in an application.

Online

deleteRIDCConnection

Remove an existing RIDC connection.

Online

displayRIDCConnection

Get all the attributes and their values associated with an RIDC connection Mbean with an option to get the value for a given attribute name.

Online


19.12.1 createRIDCConnection

Use with WLST: Online

19.12.1.1 Description

Creates a new RIDC connection reference and adds the connection name to the mds layer.

19.12.1.2 Syntax

createRIDCConnection('appName','conName')
Argument Type Description
appName java.lang.String Name of the application for which the connection will be created.
connName java.lang.String Name of the connection which is the placeholder for RIDC connection reference.

19.12.1.3 Example

The following command creates an RIDC connection 'WccAdfDefaultConnection' in the application 'Oracle WebCenter Content - Web UI':

createRIDCConnection('Oracle WebCenter Content - Web UI','WccAdfDefaultConnection')

19.12.2 updateRIDCConnection

Use with WLST: Online

19.12.2.1 Description

Updates the connection properties for an existing RIDC connection reference. These changes and additions are read as runtime data and saved in the mds layer.

19.12.2.2 Syntax

updateRIDCConnection(appName, connName, ['connUrl'], ['connSockettimeout'], 
['connPoolMethod'], ['connPoolSize'], ['connWaitTime'], ['credUsername'], 
['credPassword'], ['credAppidkey'], ['credImpersonationAllowed'], ['jaxwsStack'], 
['jaxwsPolicy'], ['jaxwsJpsconfigfile'], ['jaxwsSkipstackoptimizations'], 
['jaxwsServerInstancename'], ['jaxwsRegisteridentityswitchfilter'], 
['httpLibrary'], ['idcsAlgorithm'], ['idcsKeystoreFile'], 
['idcsKeystorePassword'], ['idcsKeystoreAlias'], ['idcsKeystoreAliasPassword'], 
['idcsTrustmanagerFile'], ['idcsTrustmanagerPassword'])
Argument Type Definition
appName java.lang.String Name of the application for which the connection has to be updated.
connName java.lang.String Name of the connection which will be placeholder for RIDC connection properties.
connURL java.lang.String RIDC connection URL property.
connSockettimeout java.lang.Integer RIDC connection socket timeout property in seconds.
connPoolMethod java.lang.String RIDC connection pool method property.
connPoolSize java.lang.Integer RIDC connection pool size property.
connWaitTime java.lang.Integer RIDC connection wait time property.
credUsername java.lang.String RIDC authorization credential username property.
credPassword java.lang.String RIDC authorization credential password property.
credAppidkey java.lang.String RIDC authorization credential appid key property.
credImpersonationAllowed java.lang.Boolean Credential impersonation allowed property.
jaxwsStack java.lang.String JaxWs protocol stack property.
jaxwsPolicy java.lang.String JaxWs protocol policy property.
jaxwsJpsconfigfile java.lang.String JaxWs protocol Jps config file property.
jaxwsSkipstackoptimizations java.lang.Boolean JaxWs protocol skip stack optizations property.
jaxwsServerInstancename java.lang.String JaxWs protocol server instance name property.
jaxwsRegisteridentityswitchfilter java.lang.Boolean JaxWs protocol register identity switch filter property.
httpLibrary java.lang.String Http protocol library property.
idcsAlgorith java.lang.String Secure Intradoc Protocol Algorithm property.
idcsKeystoreFile java.lang.String Secure Intradoc Protocol Keystore File property.
idcsKeystorePassword java.lang.String Secure Intradoc Protocol Keystore Password property.
idcsKeystorealias java.lang.String Secure Intradoc Protocol Keystore Alias property.
idcsKeystoreAliasPassword java.lang.String Secure Intradoc Protocol Keystore Alias password property.
idcsTrustmanagerFile java.lang.String Secure Intradoc Protocol TrustManager File property.
idcsTrustmanagePassword java.lang.String Secure Intradoc Protocol TrustManager Password property.

19.12.2.3 Example

The following command updates the Intradoc Protocol Connection with a 90 second socket timeout.

updateRIDCConnection('Oracle WebCenter Content - Web UI','WccAdfDefaultConnection',                                                
connUrl='idc://contentserver:4444',credUsername='weblogic',connSockettimeout=90)

19.12.3 listRIDCConnections

Use with WLST: Online

19.12.3.1 Description

Lists all the RIDC connection Mbeans present in an ADF connection architecture based application.

19.12.3.2 Syntax

listRIDCConnections('appName')
Argument Type Description
appName java.lang.String Name of the application for which the connection mbeans has to be returned.

19.12.3.3 Example

The following command returns all the connection Mbeans with connection type 'RIDC' present in application 'Oracle WebCenter Content - Web UI'.

listRIDCConnections('Oracle WebCenter Content - Web UI')

19.12.4 deleteRIDCConnection

Use with WLST: Online

19.12.4.1 Description

Lists all the RIDC connection Mbeans present in an ADF connection architecture based application.

19.12.4.2 Syntax

deleteRIDCConnection('appName','connName')
Argument Type Description
appName java.lang.String Name of the application for which the connection will be removed.
connName java.lang.String Name of the connection to be removed for the given application.

19.12.4.3 Example

The following command removes the connection name 'WccAdfDefaultConnection' present in application 'Oracle WebCenter Content - Web UI'.

deleteRIDCConnection('Oracle WebCenter Content - Web UI','WccAdfDefaultConnection')

19.12.5 displayRIDCConnection

Use with WLST: Online

19.12.5.1 Description

Gets all the attribute name-value pairs present in a given connection Mbean of an application, with an option to get the value of an attribute present in a given connection Mbean of an application.

19.12.5.2 Syntax

displayRIDCConnection(appName,connName,['attrName'])
Argument Type Description
appName java.lang.String Name of the application for which the connection Mbean attribute value is desired.
connName java.lang.String Name of the connection that contains the mbean property.
attrName java.lang.String Optional. Attribute name in connection Mbean for which value is desired.

19.12.5.3 Examples

The following command retrieves the connection property value of 'PropConnectionUrl'.

displayRIDCConnection('Oracle WebCenter Content - Web UI',
'WccAdfDefaultConnection','PropConnectionUrl')

The following command retrieves all the connection properties present in connection 'WccAdfDefaultConnetion'.

                 displayRIDCConnection('Oracle WebCenter Content - Web UI', 
'WccAdfDefaultConnection')