# | Line 7 | Line 7 | |
---|---|---|
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 |
10 | > | org.omg.CORBA.ORBClass= org.jacorb.orb.ORB |
11 | > | org.omg.CORBA.ORBSingletonClass= org.jacorb.orb.ORBSingleton |
12 | ||
13 | + | # Default naming service location |
14 | + | ORBInitRef.NameService=http://localhost:8052/NS_Ref |
15 | + | |
16 | # The logging verbosity to be used by the system, | |
17 | # ie, how much information will be printed to the | |
18 | # log file, where the number is: | |
# | Line 22 | Line 25 | org.omg.CORBA.ORBSingletonClass= jacorb.orb.ORBSinglet | |
25 | # DEBUG - (5) All debugging messages | |
26 | # | |
27 | # [default = 3] | |
28 | < | uk.ac.ukc.iscream.Verbosity= 5 |
28 | > | uk.org.iscream.cms.server.Verbosity= 3 |
29 | ||
30 | # The directory containing all the configuration files | |
31 | # for the system | |
32 | # | |
33 | # [default = cwd] | |
34 | < | uk.ac.ukc.iscream.ConfigurationLocation=./etc |
35 | < | uk.ac.ukc.iscream.SystemConfigurationFile=system.conf |
34 | > | uk.org.iscream.cms.server.ConfigurationLocation=./etc |
35 | > | uk.org.iscream.cms.server.SystemConfigurationFile=system.conf |
36 | ||
37 | # The time in seconds that the system should wait before | |
38 | # trying again to start it. | |
39 | < | uk.ac.ukc.iscream.ComponentTimeout=5 |
39 | > | uk.org.iscream.cms.server.ComponentTimeout=5 |
40 | ||
41 | # Currently unused, but will allow the | |
42 | # user to select what logger they use | |
# | Line 54 | Line 57 | uk.ac.ukc.iscream.ComponentTimeout=5 | |
57 | # hold in the window] | |
58 | # | |
59 | # [default = ScreenLogger] | |
60 | < | uk.ac.ukc.iscream.LoggerPackage=uk.ac.ukc.iscream.core.loggers |
61 | < | uk.ac.ukc.iscream.LoggerClass=ScreenLogger |
60 | > | uk.org.iscream.cms.server.LoggerPackage=uk.org.iscream.cms.server.core.loggers |
61 | > | uk.org.iscream.cms.server.LoggerClass=ScreenLogger |
62 | ||
63 | < | uk.ac.ukc.iscream.LoggerClass.FileLogger.filename=/usr/local/proj/co600_10/servercore.log |
63 | > | uk.org.iscream.cms.server.LoggerClass.FileLogger.filename=/var/log/i-scream.log |
64 | ||
65 | < | uk.ac.ukc.iscream.LoggerClass.SimpleSwingLogger.maxMessages=1000 |
66 | < | uk.ac.ukc.iscream.LoggerClass.SimpleGUILogger.maxMessages=1000 |
65 | > | uk.org.iscream.cms.server.LoggerClass.SimpleSwingLogger.maxMessages=1000 |
66 | > | uk.org.iscream.cms.server.LoggerClass.SimpleGUILogger.maxMessages=1000 |
67 | ||
68 | # A list of components that should be started by the component manager | |
69 | # ORDER IS IMPORTANT | |
70 | # Ensure you read all documentation regarding the order of starting | |
71 | # components | |
72 | # | |
73 | + | # [nb. the dependency checking code should take care of the order] |
74 | + | # |
75 | # Core - Must be first | |
76 | < | # DBInterface & ClientInterface - Must be before RootFilter |
77 | < | # RootFilter - Must be after above, and before Filter |
78 | < | # Filter - Must be after above |
76 | > | # RootFilter - Must be before Filter and ClientInterfaces |
77 | > | # ClientInterface - Must be after RootFilter |
78 | > | # Filter - Must be after RootFilter |
79 | # FilterManager - Must be after the filters | |
80 | # Client - Must be after the ClientInterface, but usually last | |
81 | # | |
82 | # Thus a typical order is: | |
83 | < | # Core;DBInterface;ClientInterface;RootFilter;Filter;FilterManager;Client |
84 | < | uk.ac.ukc.iscream.ComponentList=Core;DBInterface;ClientInterface;RootFilter;Filter;FilterManager;Client |
83 | > | # Core;RootFilter;ClientInterface;Filter;FilterManager;Client |
84 | > | uk.org.iscream.cms.server.ComponentList=Core;RootFilter;ClientInterface;Filter;FilterManager;Client |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |