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() - Outbound Communication Endpoint entfernen

Funktion:

BcAdminOutboundCommEndpoint.remove()

Entfernt den angegebenen Outbound Communication Endpoint aus der Konfiguration.

Parameter:

bc_object
(BcObject vom Typ BcObjectType.OUTBOUND_COMM_ENDPOINT)

Der Outbound Communication Endpoint, der entfernt werden soll.

Rückgabe:

Keine

Exceptions:

BcObjectException, BcToolException

Beispiel:

...
import BcAdminOutboundCommEndpoint
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
ce_obj=BcAdminOutboundCommEndpoint.getObject("CEND",proxy_obj)
BcAdminOutboundCommEndpoint.remove(ce_obj)
...