Your Browser is not longer supported

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

{{viewport.spaceProperty.prod}}

authenticate() - Authenticate at proxy cluster

Function:

BcAdminProxyCluster.authenticate()

You can use this function to authenticate yourself in order to administer and configure the specified proxy cluster.

Parameters:

bc_object (BcObject of type BcObjectType.PROXY_CLUSTER).

Proxy cluster with which you want to authenticate yourself.

password (String)

Administration password of the proxy cluster

Return:

True if authentication was successful,
BcParameterException otherwise

Exceptions:

BcParameterException, BcObjectException

Note:

  • The master proxy's Admin User Password must be specified for the proxy cluster.

  • If authentication is not successfully performed for a BcObject of type BcObjectType.PROXY then no other function in which this object is specified as a parameter can be executed. This also applies to the functions of other modules, e.g. BcAdminInboundUser.create().

  • If you save the master proxy's administration password in the proxy cluster then authentication is not required (see the Management Console's online help system: Adding BeanConnect Proxies to the Management Console – Adding a Proxy – Proxy Properties, General: Management Console Access, Admin User Password, Use.

Example:

...
import BcAdminProxyCluster
...
clstr_obj=BcAdminProxyCluster.getObject("BCCluster")
clstr_aut=BcAdminProxyCluster.authenticate(clstr_obj,"BCpass")
...