Your Browser is not longer supported

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

{{viewport.spaceProperty.prod}}

getProperties() - Read properties of an inbound message endpoint

Function:

BcAdminInboundMsgEndpoint.getProperties()

Reads all the properties of the specified inbound message endpoint and returns a dictionary with key-value pairs for the properties.

Parameters:

bc_object (BcObject of type BcObjectType.INBOUND_SERVICE)

The inbound message endpoint whose properties are to be read.

Return:

Dictionary with the key-value pairs for all the properties of the inbound message endpoint. You can find the possible values for key in Properties of an inbound message endpoint .

Exceptions:

BcObjectException, BcToolException

Example:

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