IBM Business Process Manager, V8.0.1, All platforms > Reference > Commands and scripts > Commands (wsadmin scripting)
showSCMConnectivityProvider command
Use the showSCMConnectivityProvider command to return a list of all the parameters for a Service Connectivity Management (SCM) connectivity provider.
Before you begin
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')
Syntax
>>-wsadmin-- --showSCMConnectivityProvider--+ -name--+--------->< '-target-'Purpose
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).
Parameters
- -name connectivityProviderName
- The name of the connectivity provider, as a string.
- target
- The connectivity provider target object.
Example
Use JACL:
$AdminTask showSCMConnectivityProvider {-name myProvider}Use Jython:
AdminTask.showSCMConnectivityProvider('[-name myProvider]')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