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 inbound message endpoint

Function:

BcAdminInboundMsgEndpoint.remove()

Removes the specified inbound message endpoint from the configuration.

Parameters:

bc_object (BcObject of type BcObjectType.INBOUND_MSG_ENDPOINT)

Inbound message endpoint that is to be removed.

Return:

None

Exceptions:

BcObjectException, BcToolException

Example:

...
import BcAdminInboundMsgEndpoint
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
me_obj=BcAdminInboundMsgEndpoint.getObject("myMEP",proxy_obj)
BcAdminInboundMsgEndpoint.remove(me_obj)
...