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.

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
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')

Prerequisites

Location

The listSCMConnectivityProviders command is run using the AdminTask object of the wsadmin scripting client. The wsadmin scripting client is located in the install_root\bin directory.

Syntax

>>-wsadmin-- --listSCMConnectivityProviders-------------------><

Parameters

Not applicable.

Example

Using Jacl:
$AdminTask listSCMConnectivityProviders
Using Jython:
AdminTask.listSCMConnectivityProviders()
Tip: Add the jython print statement before the command when you want to see formatted output.