|
Will
the security databases work with multiple applications at the same time?
Can
the IsgCSSecure component keep track of what a user has accessed in the
application?
Why do I get file not found
C:\DELPHI\BIN\ISGCSSEC.PAS?
Why
do I get Error Occurred Initializing Security. Execution Ending?
Why
do I get the error "xx.dcu file not found" or "xx.pas
file not found" when running or compiling my application in Delphi
3.0
ANSWERS
Will
the security databases work with multiple applications at the same time?
Yes. This is one of the ways the component can make your life easier.
If you have a list of users in a security database, just add the
additional constants needed (or share the same constants) and give each
user the additional access rights necessary.
Top
Can
the IsgCSSecure component keep track of what a user has accessed in the
application?
Yes. Logging can be enabled in the setup dialog of the administrative
program. You can also view the Logging reports with the administrative
program. The logging has been enhanced in version 2.0 to provide more
information.
Top
Why do I get file not found
C:\DELPHI\BIN\ISGSEC2.PAS?
The ISGSEC2.DCU file is located in a directory that is not part of
the search path. To fix this error click on the menu item Project then
Options. In the Project options dialog box click on the
Directories/Conditionals
tab and in the search path text box type in the location of the
isgsec2.dcu file. Click OK and do a Build All.
Top
Why
do I get Error Occurred Initializing Security. Execution Ending?
1) The password property is blank or has the wrong password.
2) The Alias property is blank or has the wrong alias.
3) You do not have access to the Interbase Server.
4) You have not created the Security Database. You must create the
Security Database before the Security component can be used. See the
samples or the tutorial that came with the component, this will make
building your first Security database much easier.
Top
Why
do I get the error "xx.dcu file not found" or "xx.pas
file not found" when running or compiling my application in
Delphi 3.0
The directory where you have installed the components is not listed
in the Delphi 3.0 Library Search Path. If you select tools in the menu
bar of Delphi 3.0 and then click on "Environment Options" Once
you're in
the environment options window click the "Library" tab and add
the path to your newly installed components to the Library path. Click
OK when you are done and now your application will compile and run with
out the 'file not found' error.
Top
|