IBM Business Process Manager, V8.0.1, All platforms > Reference > Commands and scripts > Commands (wsadmin scripting)
listSCMConnectivityProviders command
Use the listSCMConnectivityProviders command to return a list of all the parameters for a Service Connectivity Management (SCM) connectivity providers that exist in the cell.
Before you begin
The listSCMConnectivityProviders command is run using the AdminTask object of the wsadmin scripting client.
- Locate the command that starts the wsadmin scripting client: this is found in the install_root\bin directory.
- Run the wsadmin command.
- If the server is not running, use the -conntype none option.
- If you are not connecting to the default profile, use the -profileName profile_name option.
Use the following command to list all the Service Connectivity Management administrative commands.
- Using JACL:
$AdminTask help SCMAdminCommands- Using Jython:
print AdminTask.help('SCMAdminCommands')
Use the following command to get detailed help on a particular command.
- Using JACL:
AdminTask help command_name$- Using Jython:
print AdminTask.help('command_name')
Syntax
>>-wsadmin-- --listSCMConnectivityProviders-------------------><Purpose
The listSCMConnectivityProviders command returns a list of all the connectivity providers that exist in the cell.
- Command name
- listSCMConnectivityProviders
- Target
- Not applicable
- Result
- Returns:List (javax.management.ObjectName) SCMConnectivityProvider
Parameters
Not applicable.
Example
Use JACL:
$AdminTask listSCMConnectivityProvidersUse Jython:
AdminTask.listSCMConnectivityProviders()Tip: Add the jython print statement before the command when you want to see formatted output.
Parent topic: Commands (wsadmin scripting)
Related information:
![]()
Obtaining online help using wsadmin scripting
![]()
Administrative command invocation syntax using wsadmin scripting
![]()
Use the wsadmin scripting tool
![]()
Jython script library