Loading...
Select Version
&pagelevel(5)&pagelevel
Function: |
Reads all the properties of the specified inbound message endpoint and returns a dictionary with key-value pairs for the properties. |
Parameters: |
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: |
|
Example: | ...
import BcAdminInboundMsgEndpoint
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
me_obj=BcAdminInboundMsgEndpoint.getObject("myMEP",proxy_obj)
meProps=BcAdminInboundMsgEndpoint.getProperties(me_obj)
...
|