IBM Business Process Manager, V8.0.1, All platforms > Reference > Commands and scripts > Commands (wsadmin scripting)
removeSCMConnectivityProvider command
Use the removeSCMConnectivityProvider command to remove a Service Connectivity Management (SCM) connectivity provider.
Before you begin
The removeSCMConnectivityProvider 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-- --removeSCMConnectivityProvider--+ -name--+---------->< '-target-'Purpose
The removeSCMConnectivityProvider removes a connectivity provider that has been named or supplied as a target object. An exception is thrown if there are still proxy gateway modules deployed to the target server or cluster representing group proxies created on this connectivity provider. The group proxies should be removed via the Service Federation Management console or, if the connectivity provider is no longer managed by the console, the proxy gateway modules should be manually removed by the IBM Business Process Manager administrator. See Service Connectivity Management usage of Service Component Architecture modules:
![]()
for information on the relationship between group proxies and proxy gateway modules.
- Command name
- removeSCMConnectivityProvider.
- Target
- javax.management.ObjectName SCMConnectivityProvider – the connectivity provider to be removed.
- Result
- Removes the connectivity provider.
Parameters
- -name connectivityProviderName
- The name of the connectivity provider to be removed, as a string.
- target
- The connectivity provider target object.
Example
Use JACL:
$AdminTask removeSCMConnectivityProvider {-name myProvider}Use Jython:
AdminTask.removeSCMConnectivityProvider('[-name myProvider]')
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