--- projects/cms/source/server/build/etc/system.conf 2003/03/09 21:49:12 1.74 +++ projects/cms/source/server/build/etc/system.conf 2003/05/05 22:04:59 1.75 @@ -10,7 +10,7 @@ # setup, aswell as a some example configuration. # # $Author: tdb $ -# $Id: system.conf,v 1.74 2003/03/09 21:49:12 tdb Exp $ +# $Id: system.conf,v 1.75 2003/05/05 22:04:59 tdb Exp $ # # http://www.i-scream.org.uk/ # @@ -53,13 +53,7 @@ config.workstations=workstations.conf # Any hosts not specified by now have the default # config as given in this file. -# Another component of the system is the mySQL -# database part of the server call the DBInterface. -# This has it's own config so the passwords for the -# mySQL database can be kept seperate. -#config.mySQL=mySQL.conf - ############################################################ #### Misc system-wide configuration ############################################################ @@ -126,10 +120,6 @@ Filter.PluginsPackage=uk.org.iscream.cms.server.filter # And the names of the plugins to be loaded. Filter.Plugins=TypeChecker;EnforceEssentialData;SourceChecker -# The special filter known as the "Root Filter" needs -# a name within the system. -RootFilter.name=root - # Every Filter, except the root, needs a parent to # send their data to. This is usually the root filter, # although in more complex setups it might be another @@ -161,16 +151,12 @@ Filter.SourceCheckerPluginACL=DEFAULT:ALLOW ############################################################ -#### Root filter interfaces configuration +#### Root filter configuration ############################################################ -# The Root FIlter can send data to various upstream -# data processors. There are two of these at present -# in the server - the DBInterface and the ClientInterface. -# Their component names are given here as defined below. -# (the DBInterface is switched off - commented - by default) -#RootFilter.dbInterfaceName=database -RootFilter.realtimeInterfaceName=realtimeclients +# The special filter known as the "Root Filter" needs +# a name within the system. +RootFilter.name=root ############################################################ @@ -180,10 +166,12 @@ RootFilter.realtimeInterfaceName=realtimeclients # The client interface listens for connections from clients # on a TCP port. It is specified here. ClientInterface.listenPort=4510 -# The component name for the Client Interface. This should -# match the name specified to the Root Filter above. -ClientInterface.name=realtimeclients +# The client interface needs to connect to another one to +# receive data. There is a special client interface in the +# root filter which is the top of the tree. +ClientInterface.parent=root + # The Client Interface has two channels, control and data. # Each of these can have an ACL for allowing connections. # As per previous examples in this configuration file they @@ -194,12 +182,11 @@ ClientInterface.TCPDataChannelACL=DEFAULT:ALLOW ############################################################ -#### Database interface configuration +#### LocalClient Configuration ############################################################ -# The name for the Database Interface. This should match -# the name given to the Root Filter. -DBInterface.name=database +# The parent for the Local Client +Client.parent=clientinterface1 ############################################################