ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/build/etc/default.properties
Revision: 1.6
Committed: Sun Feb 25 20:55:27 2001 UTC (23 years, 3 months ago) by tdb
Branch: MAIN
Changes since 1.5: +5 -4 lines
Log Message:
Added starting of the local client.

File Contents

# Content
1 # This file contains system properties that should
2 # be used as defaults by the I-Scream CORE
3 #
4 # $Author: ajm4 $
5 # $Id: default.properties,v 1.5 2001/02/23 18:19:30 ajm4 Exp $
6
7
8 # These properties are REQUIRED by the system to tell it
9 # which ORB to use.
10 org.omg.CORBA.ORBClass= jacorb.orb.ORB
11 org.omg.CORBA.ORBSingletonClass= jacorb.orb.ORBSingleton
12
13 # The logging verbosity to be used by the system,
14 # ie, how much information will be printed to the
15 # log file, where the number is:
16 #
17 # FATAL - (0) Fatal or Critical Errors
18 # ERROR - (1) All Errors
19 # WARNING - (2) Warnings
20 # SYSMSG - (3) System Component messages
21 # SYSINIT - (4) System Component initialisation
22 # DEBUG - (5) All debugging messages
23 #
24 # [default = 3]
25 uk.ac.ukc.iscream.Verbosity= 5
26
27 # The directory containing all the configuration files
28 # for the system
29 #
30 # [default = cwd]
31 uk.ac.ukc.iscream.ConfigurationLocation=./etc
32 uk.ac.ukc.iscream.SystemConfigurationFile=system.conf
33
34 # The time in seconds that the system should wait before
35 # trying again to start it.
36 uk.ac.ukc.iscream.ComponentTimeout=5
37
38 # Currently unused, but will allow the
39 # user to select what logger they use
40 # Please choose the Logger class that you wish to use
41 # for system logging. Choices are, at present;
42 #
43 # ScreenLogger - Logs everything to the screen
44 # [Params = none]
45 # FileLogger - Logs everything to a file
46 # [FileLogger.filename = logfile name]
47 # MultiLogger - Logs to both the screen and a file
48 # [uses parameters of the loggers it uses]
49 # SimpleGUILogger - Logs to a nice GUI !
50 # [SimpleGUILogger.maxMessages = maximum number of lines to
51 # hold in the window]
52 # SimpleSwingLogger - Logs to a nicer GUI!
53 # [SimpleSwingLogger.maxMessages = maximum number of lines to
54 # hold in the window]
55 #
56 # [default = ScreenLogger]
57 uk.ac.ukc.iscream.LoggerPackage=uk.ac.ukc.iscream.core.loggers
58 uk.ac.ukc.iscream.LoggerClass=ScreenLogger
59
60 uk.ac.ukc.iscream.LoggerClass.FileLogger.filename=/usr/local/proj/co600_10/servercore.log
61
62 uk.ac.ukc.iscream.LoggerClass.SimpleSwingLogger.maxMessages=1000
63 uk.ac.ukc.iscream.LoggerClass.SimpleGUILogger.maxMessages=1000
64
65 # A list of components that should be started by the component manager
66 # ORDER IS IMPORTANT
67 # Ensure you read all documentation regarding the order of starting
68 # components
69 #
70 # Core - Must be first
71 # DBInterface & ClientInterface - Must be before RootFilter
72 # RootFilter - Must be after above, and before Filter
73 # Filter - Must be after above
74 # FilterManager - Must be after the filters
75 # Client - Must be after the ClientInterface, but usually last
76 #
77 # Thus a typical order is:
78 # Core;DBInterface;ClientInterface;RootFilter;Filter;FilterManager;Client
79 uk.ac.ukc.iscream.ComponentList=Core;DBInterface;ClientInterface;RootFilter;Filter;FilterManager;Client