TestIT:Configuration Login

From Nolek Wiki
Jump to navigation Jump to search

6.2.6 Login

Login makes it possible to create settings for:

  1. Login configuration

Login configuration

In Login configuration, it is possible to select the user input that will be used for logging into TestIT.

User input:

  1. Input – select if users are required to login with both username and password.
  2. Hide username – select if the username input should be masked with dots like a password.
  3. Input Method – select If the login credentials should be entered manually, or through a device.
    1. Device login lets you use an RS232 device (serial advanced) to enter credentials on the login screen, this could for instance be received from a scanner.
      1. Device – select an existing serial advanced device to use for logging in.
      2. Username symbol – select the string symbol matching the parameter that will contain the username, as specified in the config of the selected device.
      3. Password symbol – same goes for the password if enabled. If the password will be received in the same parameter, use the same symbol.

Validation type:

  1. Standard login(default) – uses a TestIT database for storing and verifying users.
  2. Custom login: Database – uses a custom MSSQL Database with stored procedure for user verification on login.
    1. Custom database settings
      1. Server – the server on the database
      2. Database – name of the database
      3. Username – for the database access
      4. Password – for the database access
      5. Stored procedure – the procedure on the database to use for login validation
    2. Custom database requirements
      1. Must have a Stored Procedure to handle the login verification
      2. Procedure must accept:
      3. Userid(nvarchar/string)
      4. Password (nvarchar/string)
      5. Procedure must select/return values in following order:
      6. Username (nvarchar/string)
      7. Fullname (nvarchar/string)
      8. Role (nvarchar/string)
      9. LoggedIn (bit/boolean)
      10. StartInProduction (bit/bool)
      11. Message(nvarchar/string)
    3. Role must match a TestIT specified Role
    4. If “User Input” configuration from previous section does not require password, the username will be used again as the password.

Extra:

  1. Custom message – a custom message that can be shown at the top of the login page.
  2. Custom logo – a custom logo/picture that can be shown in the side of the login page.


Click Save on the bottom right, and all currently visible settings will be saved.


Back to Configuration