Article ID: 80863 - Last Review: October 31, 2006 - Revision: 1.1 Limiting Simultaneous Users of an ApplicationThis article was previously published under Q80863 On This PageSUMMARY
A major advantage to having a local area network is that software can
be easily installed and maintained, and accessed by a large number of
users. A single installation of a product, such as Microsoft Excel for
Windows, can be accessed by hundreds of users.
Unfortunately, the advantages local area networks provide can also lead to licensing difficulties. For example, a company may have only 15 licenses for Excel and therefore must never have more than 15 users accessing the application at one time. This article describes three approaches to restricting the number of users that can simultaneously access an application:
APPROACH 1: WRITING RECORDS TO A DATABASEThis method works by writing a record to a database each time a user enters and exits an application. When a user enters the application, code is required to check the database and verify that the specified number of users has not been exceeded. If it has, the application does not start. This approach can be part of the initialization code for the application itself, or it can be written in a utility that is run each time a user enters and exits the application. The specific steps of this approach are:
AdvantagesThe main advantage of this approach is that you do not have to access to the application's code to control the number of users. You can write a utility that runs in a batch file before the application is opened and also runs after the application is exited, and the utility appropriately controls the number of simultaneous users.DisadvantagesThe main problem with methods that use batch files is that no one is required to use the batch file to access the application. In this case, users who do not use the batch file are not monitored. Also, if a user's machine is powered off, rebooted, or if the network connection is lost while a user is in the application, the "Out" record is never written; that user appears to be using one of the licenses continuously.APPROACH 2: LOCKING PORTIONS OF A FILEThis approach requires access to the application's code. An initialization procedure that opens an audit file and attempts to lock certain blocks of that file is added to the application. The number of blocks should be equal to the number of licenses. If any of the blocks are free, access to the application is permitted. If the lock request fails on all blocks, all the licenses are currently in use, and the program closes with an appropriate message. When a user exits the application, the lock is released to allow other users access. The steps for this approach are:
AdvantagesWith this approach, if a user reboots the machine, powers off the machine, or loses a network connection, usage of the application is freed as soon as a session time-out occurs (usually within one minute, which is the default). Also, no batch files are needed to run any utilities; therefore, the problem of users accessing the application without using the batch file is eliminated.DisadvantageYou must have access to the application's source code.APPROACH 3: LIMIT ACCESSES TO SHARED RESOURCESWith LAN Manager you can control the number of users who can access a shared resource. You can use this feature of LAN Manager to limit the number of users using an application by incorporating the use of the resource with the execution of the application. The easiest way to implement this approach is by using batch files. The following example is a batch file that accesses Microsoft Excel:net use f: \\server1\excelshr f: excel c: net use f: /d AdvantagesThis approach eliminates problems that occur if a workstation loses its network connection or is powered off, because its use of the share is discarded when a session time-out occurs. This approach does not require writing your own code, paying for third-party software, or accessing an application's code. The LAN Manager utility APPSTART.EXE uses this approach.DisadvantagesA batch file (or some other batch mechanism) is required to use this approach. There is no method to ensure that the batch file is used; therefore, users can manually use the shared resource and be counted as users of the application even if they have not started the application. You should also make sure that AUTODISCONNECT is turned off if you use this approach. | Article Translations
|


Back to the top
