Loading...
Select Version
&pagelevel(5)&pagelevel
Function: |
Modifies all the properties of the specified inbound message endpoint that are present in the specified dictionary. |
Parameters: |
The inbound message endpoint whose properties are to be modified.
Dictionary with the key-value pairs for the properties that are to be modified. You can find the possible values for key in Properties of an inbound message endpoint. |
Return: | None |
Exceptions: |
|
Example: | ...
import BcAdminInboundMsgEndpoint
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
me_obj=BcAdminInboundMsgEndpoint.getObject("myMEP",proxy_obj)
modProps={"desc":"created","service-names":"TESTIS1, TESTIS2"}
BcAdminInboundMsgEndpoint.modifyProperties(me_obj,modProps)
...
|