showSCMConnectivityProvider command

Use the showSCMConnectivityProvider command to return a list of all the parameters for a Service Connectivity Management (SCM) connectivity provider.

The showSCMConnectivityProvider command returns a list of all the parameters for a connectivity provider, given its name or target object.

An exception is thrown if a connectivity provider is not found with the name that you specify, or if the target object does not represent a connectivity provider.

Command name
showSCMConnectivityProvider
Target
javax.management.ObjectName SCMConnectivityProvider - the connectivity provider to be displayed.
Result
Hashtable (Property=Value).
The showSCMConnectivityProvider 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 showSCMConnectivityProvider 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-- --showSCMConnectivityProvider--+ -name--+---------><
                                            '-target-'

Required parameters

-name connectivityProviderName
The name of the connectivity provider, as a string.
target
The connectivity provider target object.

Examples

Using Jacl:
$AdminTask showSCMConnectivityProvider {-name myProvider}
Using Jython:
AdminTask.showSCMConnectivityProvider('[-name myProvider]')
Tip: Add the jython print statement before the command when you want to see formatted output.