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 outbound communication endpoint object from the configuration

Function:

BcAdminOutboundCommEndpoint.getObject()

Reads the outbound communication endpoint with the specified name from the configuration

Parameters:

object_name (String)

Name of the BeanConnect outbound communication endpoint that is to be read.

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

Proxy or proxy cluster to which the outbound communication endpoint is 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.OUTBOUND_COMM_ENDPOINT)

The read outbound communication endpoint or None if no outbound communication endpoint with a corresponding name exists.

Exceptions:

BcObjectException, BcParameterException, BcToolException

Example:

...
import BcAdminOutboundCommEndpoint
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
ce_obj=BcAdminOutboundCommEndpoint.getObject("CEND",proxy_obj)
...