Function: |
An inbound message endpoint, whose properties you must pass to the MC-CLI in a dictionary, is added to the configuration. |
Parameters: |
Name of the BeanConnect inbound message endpoint
Proxy or proxy cluster to which the inbound message endpoint is to be assigned. The specification of a
Dictionary with the key-value pairs for the properties that are to be assigned to the inbound message endpoint. You can find the possible values for key in Properties of an inbound message endpoint. |
Return: |
The inbound message endpoint added to the configuration. |
Exceptions: |
|
Example: | ...
import BcAdminInboundMsgEndpoint
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
creProps={"desc":"my msg endpoint",\
"dial-type":BcDef.TYPE_DIALOG,\
"resource-adapter":"myRA","service-names":"TESTIS1, TESTIS2"}
me_obj=BcAdminInboundMsgEndpoint.create("myMEP", proxy_obj,\
props=creProps)
...
|