Description Syntax Example addExtAppField

Oracle WebCenter Custom WLST Commands 10-77 app1 ---- Name: app1 Display Name: Application1 Login URL: http:app1 Authentication Method: POST User Field Name: login Password Field Name: passwd Shared Credential: Disabled Public Credential: Disabled

10.8.4 addExtAppField

Module: Oracle WebCenter Use with WLST: Online

10.8.4.1 Description

Adds another login field for a specific external application connection. For example, in addition to user name and password, an external application may require other login criteria such as Host and MailAddress. Optionally, additional login fields can appear on the external applications login for a user to specify. If you add another login field and the external application uses shared or public credentials, you can use the WLST commands addExtAppCredential and setExtAppCredential to update the sharedpublic credentials. See Section 10.8.7, addExtAppCredential and Section 10.8.8, setExtAppCredential .

10.8.4.2 Syntax

addExtAppFieldappName, name, fieldName, [fieldValue], [displayToUser], [server, applicationVersion] Argument Definition appName Name of the WebCenter application in which to perform this operation. name Name of an existing external application connection. fieldName Login field name. The name that identifies the field on the HTML login form. This field is not applicable if the application uses BASIC authentication. fieldValue Optional. Login field value. Enter a default value for the login field or leave blank for a user to specify. This argument is blank by default. displayToUser Optional. Specifies whether the login field displays on the external applications login screen. Valid options are 1 true and 0 false. This argument defaults to 0. Note that if you set this argument to 0, you must specify the fieldValue. server Optional. Name of the managed server where the WebCenter application is deployed. For example, WC_Spaces. Required when applications with the same name are deployed to different servers and also when you have a cluster. 10-78 Oracle Fusion Middleware WebLogic Scripting Tool Command Reference

10.8.4.3 Example

This example creates an additional field named Account with the default value username.default.example in an external application called ABC. This field will be displayed in ABCs login screen. wls:weblogicserverConfig addExtAppFieldappName=webcenter, name=ABC, fieldName=Account, fieldValue=username.default.example, displayToUser=1

10.8.5 setExtAppField