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 proxy object from the configuration

Function:

BcAdminProxy.getObject()

Reads the specified proxy from the configuration

Parameters:

proxy_name (String)

Name of the BeanConnect proxy that is to be read.

Return:

(BcObject of type BcObjectType.PROXY)

The read proxy or None if no proxy with a corresponding name exists.

Exceptions:

BcObjectException, BcToolException

Note:

Before you can use the returned object as an input parameter for other functions, you must first perform an authentication (see the function authenticate() - Authenticate for proxy ).

Example:

...
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
...