Your Browser is not longer supported

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

{{viewport.spaceProperty.prod}}

getObject() - Read inbound message endpoint object from the configuration

Function:

BcAdminInboundMsgEndpoint.getObject()

Reads the inbound message endpoint with the specified name from the configuration.

Parameters:

object_name (String)

Name of the BeanConnect inbound message endpoint that is to be read.

proxy_object
(BcObject of type BcObjectType.PROXY / ObjectType.PROXY_CLUSTER)

The proxy or proxy cluster to which the inbound message endpoint is to be assigned.
The specification of a proxy_object of type BcObjectType.PROXY is not permitted if the proxy belongs to a proxy cluster. In this case, the proxy cluster object must be specified as a parameter here.

Return:

(BcObject of type BcObjectType.INBOUND_MSG_ENDPOINT)

The read inbound message endpoint or None if no inbound message endpoint with a corresponding name exists.

Exceptions:

BcObjectException, BcParameterException, BcToolException

Example:

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