Your Browser is not longer supported

Please use Google Chrome, Mozilla Firefox or Microsoft Edge to view the page correctly
Loading...

{{viewport.spaceProperty.prod}}

remove() - Remove outbound service

Function:

BcAdminOutboundService.remove()

Removes the specified outbound service from the configuration

Parameters:

bc_object
(BcObject of type BcObjectType.OUTBOUND_SERVICE)

The outbound service that is to be removed.

Return:

None

Exceptions:

BcObjectException, BcToolException

Example:

...
import BcAdminOutboundService
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
os_obj=BcAdminOutboundService.getObject("OSRV",proxy_obj)
BcAdminOutboundService.remove (os_obj)
...