This topic applies only to the IBM Business Process Manager Advanced configuration.

modifySCAExportMQBinding command

Use the modifySCAExportMQBinding command to change the attributes of a WebSphere® MQ export binding.

The modifySCAExportMQBinding command changes the JNDI name of one or more of the resources associated with a WebSphere MQ export binding.

The following circumstances cause an SCACommandException to be thrown:
  • A resource of an invalid type is specified.
  • A resource is specified that does not exist.
After using the command, save your changes to the master configuration using one of the following commands:
  • For Jython:
    AdminConfig.save()
  • For Jacl:
    $AdminConfig save

Prerequisites

The following conditions must be met:

Location

Start the wsadmin scripting client from the install_root/profiles/deployment_manager_profile/bin directory.

Syntax

Required parameters

-moduleName moduleName
The name of the SCA module associated with the export.
-export export
The name of the export.

Optional parameters

-applicationName applicationName
The name of the application.
-connectionFactory connectionFactoryName
The JNDI name of the connection factory.
-sendDestination sendDestinationName
The JNDI name of the send destination.
-activationSpecification activationSpecName
The JNDI name of the activation specification.
Note: This parameter is valid only for Version 7 applications that have been deployed to the runtime environment.
-listenerPort listenerPortName
The JNDI name of the listener port.
Note: This parameter is valid only for Version 6 applications that have been deployed to the runtime environment.

Example

To change the send destination of a WebSphere MQ export binding called Export1 in a module called MyMod to MyDest:

  • Jython example:
    AdminTask.modifySCAExportMQBinding('[-moduleName MyMod 
    -export Export1 -sendDestination MyDest]')
  • Jacl example:
    $AdminTask modifySCAExportMQBinding {-moduleName MyMod 
    -export Export1 -sendDestination MyDest}