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 for proxy

Function:

BcAdminProxy.authenticate()

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

Parameters:

bc_object (BcObject of type BcObjectType.PROXY)

Proxy object with which you want to authenticate yourself.

password (String)

Proxy's administration password.

Return:

True

If authentication was successful:

BcParameterException

otherwise

Exceptions:

BcObjectException, BcParameterException

Note:

  • 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 proxy's administration password in the graphical user interface 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 BcAdminProxy
...
BcAdminProxy.authenticate(proxy_obj, admin_pw)
...