Websydian v6.1 online documentationOnline documentation - Websydian v6.1

Other Uses of the UserManagement Pattern

Implement Change Password Page

In most web applications using User Management functionality, it must be possible for the users themselves to change their password.  This change functionality is applied by the WebChangePasswordPage service function.

Implement Create User Page

In some web applications, the users entering the application will create themselves in the system.  To implement this, a WebCreateUserPage service function is applied.

Change Number of Max Failed Logins

The default number of allowed failed logins is three before the user is set inactive (when the user is entering a wrong password).

In the Start update edit point of the CheckPasswordAndUpdateTables function the value of the local MaxNumberOfFailedLogins<FailedLogins> can be overridden.  In this way, the maximum allowed number of failed logins can be changed.

To switch off this inactivation completely, set the value of the MaxNumberOfFailedLogins<FailedLogins> to NoMaxLogins also in the Start update edit point.