Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Execute WLST Commands.. You can specify WLST code snippet on Plugin Input. Refer to FlexDeploy - Variables Guide for available variables.

This plugin operation provides the ability for the user to define additional inputs that will be available to the WLST script when executing. In addition, the plugin provides the ability for the user to define any number of outputs from the execution of the script that could be utilized in subsequent steps in the workflow.

Environment/Instance Properties

Property Name

Required

Description

FDWLS_WEBLOGIC_HOME

Yes

WebLogic Home Directory. (e.g. /u01/oracle/products/fmw/wlserver)

FDWLS_DOMAIN_NAME

Yes

WebLogic Domain Name.

FDWLS_ADMIN_LISTEN_ADDRESS

Yes

The listener address of the WLS admin server. (e.g. localhost)

FDWLS_ADMIN_LISTEN_PORT

Yes

The port of the WLS admin server. (e.g. 7001)

FDWLS_ADMIN_USE_SSL

No

Indicates whether the admin server is using SSL.

FDWLS_ADMIN_USER

Yes

The user name for the WLS admin server.

FDWLS_ADMIN_PASSWORD

Yes

The password for FDWLS_ADMIN_USER.

FDWLS_BASE_INSTALL_DIRECTORY

No

Base directory to install the WebLogic deployments from.

Files will be copied here on Admin Server endpoint by WebLogic Plugin prior to installation.

For example: /oracle/middleware/product/user_projects/applications

FDWLS_ADMIN_SERVER_NAME

No

WebLogic Admin Server Name. Will Default to AdminServer.

FDWLS_ADMIN_DOMAIN_DIRECTORY

No

WebLogic Domain Directory for AdminServer. Used when the admin server runs from a different domain folder than managed servers

FDWLS_DOMAIN_DIRECTORY

Yes

WebLogic Domain Directory for managed servers.

FDWLS_NODEMANAGER_HOST

Yes

Host for Node Manager connection.

FDWLS_NODEMANAGER_PORT

Yes

The port for the WLS Node Manager.

FDWLS_NODEMANAGER_USER

Yes

The user id for the WLS Node Manager.

FDWLS_NODEMANAGER_PASSWORD

Yes

The password for FDWLS_NODEMANAGER_USER.

FDWLS_NODEMANAGER_TYPE

No

Node Manager Type. (e.g. ssl or plain)

FD_ORACLE_MW_HOME

Yes

The oracle middleware home (which has subfolders such as oracle_common, wlsserver_10.3, coherence*, etc.).

Project Properties

Property Name

Required

Description

 

 

 

Inputs

Input Name

Required

Description

FDWLST_INP_SCRIPT_FOLDER

No

WLST sub-folder for Fusion Middleware. (e.g wlserver, oracle_common, soa, wcportal etc.)

FDWLST_INP_CODE_SNIPPET

Yes

WLST script commands to execute. Return output using fdSetOutput({OUTPUT2}, {VALUE2}).

Outputs

Output Name

Required

Description

 

 

 

Artifacts

This operation delegates the consume/produce artifacts decision to the workflow developer. Check Consumes Artifacts on workflow editor if this operation needs artifact files. Check Produces Artifacts on workflow editor if this operation creates artifact files. There is a specific folder for artifacts which is available as variable FD_ARTIFACTS_DIR.

...

WLST code can utilize additional functions provided by this plugin. Function names are self-explanatory. def fdGetEnv(environmentKey):

Get environment variable value for supplied key. Jython module os.getenv(str) method does not appear to be working at times. This API uses java.lang.System class to get value for environment variable. def fdLog(methodName, message)

Code Block
languagepy
titleGet Environment Variable
 def fdGetEnv(environmentKey):

Create log message using method name and message. def fdSetOutput(name, value)

Code Block
languagepy
titleLog
 def fdLog(methodName, message):

Set output using provided name and value.

Code Block
languagepy
titleSet Output (return value)
def

...

 fdSetOutput(name, value):

Disconnect from Admin Server.

Code Block
languagepy
titleDisconnect from AdminServer
def

...

 fdDisconnect():

Connect to Admin Server represented by current instance.

Code Block
languagepy
titleConnect to AdminServer of current instance
def

...

 fdConnectToCurrentInstance(

...

):

Connect to Admin Server represented by specified instance code.

Code Block
languagepy
titleConnect to AdminServer of specific instance
def fdConnectToInstance(instanceCode):