login

Logs into Performance Management Architect.

If you login using a script, enter:

Login admin,password;

If you login using a command line, enter:

Login;

Login Through a Proxy

You can use the SET command and define the following variables to login through a proxy.

set ProxyHost='http://localhost/myProxy';
set ProxyPort='8080';
set ProxyUsername='myProxyUser';
set ProxyPassword='myProxyPassword';

ProxyHost —The proxy host name.

ProxyPort—The proxy port number.

ProxyUsername—The user name to be authenticated.

ProxyPassword—The user password.

Login Using Single Sign On (SSO) such as Oracle Access Manager

You have two options to login using single sign on:

  • Basic/Digest authentication

    For Basic/Digest authentication, set the SSOType to Basic as follows:

    set SSOType='Basic';
    

    For pre-authentication (used for optimization), define the AuthenticationPreemptive as follows:

    set AuthenticationPreemptive='True';
    
  • Form based authentication

    For form based authentication, set the SSOType to Form as follows:

    set SSOType='Form';
    

    If you are using Form based authentication, you must define the field names for where the username and password should be posted as follows:

    set SSOFormUsernameField='userid';
    set SSOFormPasswordField='password';
    

    Note:

    The default field name is 'userid' and 'password'.