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

showSCAExportEJBBinding command

Use the showSCAExportEJBBinding command to show the attributes of an Enterprise JavaBeans (EJB) export binding.

Prerequisites

You can run the command in either local mode or connected mode:
  • In local mode, specify the wsadmin -conntype none option.
  • To run in connected mode, you must connect as a cell administrator that is assigned the CellAdmin role, or a deployment environment administrator that is assigned the DEAdmin role.

Location

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

Syntax

  • Using Jython:
    AdminTask.showSCAExportEJBBinding('-moduleName module_name -export export_name [-applicationName application_name]')
  • Using Jacl:
    $AdminTask showSCAExportEJBBinding {-moduleName module_name -export export_name [-applicationName application_name]}

Required parameters

-moduleName module_name
The name of the module associated with the export.
-export export_name
The name of the export.

Optional parameters

-applicationName application_name
The name of the application.

Example

The following example uses showSCAExportEJBBinding to show the attributes of the EJB export binding for a module called MyMod and an export called Export1.

  • Jython example:
    AdminTask.showSCAExportEJBBinding('[-moduleName MyMod 
    -export Export1]')
    Tip: Add the Jython print statement before the command when you want to see formatted output.
  • Jacl example:
    $AdminTask showSCAExportEJBBinding {-moduleName MyMod 
    -export Export1}