Changeset 662 in tmcsimulator for trunk/config/cad_server.properties


Ignore:
Timestamp:
09/14/2022 03:24:10 PM (4 years ago)
Author:
jdalbey
Message:

config directory overhaul

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/config/cad_server.properties

    r573 r662  
     1# Configuration settings for the CAD Server 
     2#  
     3# CAD Server is started before any other subsystem in the TMCSim.  
     4# The filename of this file is specified as the default in CADServer.java. 
     5# The default can be overriden by specifying -DPROP_FILE= on the java command, 
     6# for example, by scripts in the bin folder. 
     7#  
     8# CADClientPort         : The port number to use for remote CAD Client connections. 
     9# CoordinatorRMIPort    : The port number to use for binding the Coordinator. 
     10# CMSDiversionXML       : The filepath for the xml file containing initialization data 
     11# for the Diversion "database."  
     12# AudioFileLocation     : The root directory path where audio files are accessed. 
     13# ParamicsProperties    : The filepath for the properties file to initialize the 
     14# ParamicsControlManager. 
     15# ATMSProperties        : The filepath for the properties file to initialize the 
     16# ATMSManager. 
     17# MediaProperties       : The filepath for the properties file to initialize the 
     18# MediaManager. 
     19# TrafficMgrProperties  : The filepath for the properties file to initialize the Traffic Manager. 
     20# ElapsedTimeFile       : The location where the Coordinator writes the simulation time, where it is accessed by other subsystems. 
     21# CADcommentsLog        : The location where the Coordinator writes the CAD comments log, where it is accessed by the Unified Logging system. 
     22# UserInterface         : The class that serves as the UI for the Server.  
     23 
     24UserInterface          = tmcsim.cadsimulator.viewer.CADServerViewer 
     25 
    126CADClientPort          = 4444  
    227CoordinatorRMIPort     = 4445  
    328CADRmiPort             = 4446 
     29AudioFileLocation      = Scenarios/Audio/ 
     30ElapsedTimeFile        = webapps/dynamicdata/sim_elapsedtime.json 
     31CADcommentsLog         = webapps/dynamicdata/CADcomments.log 
    432CMSDiversionXML        = config/cmsdiversions.xml 
    5 AudioFileLocation      = Scenarios/Audio/ 
     33 
     34TrafficMgrProperties   = config/traffic_model_config/traffic_model_config.properties 
     35MediaProperties        = config/cad_server_media.properties 
     36ParamicsProperties     = config/cad_server_paramics.properties 
     37ATMSProperties         = config/cad_server_atms.properties 
     38 
     39#Alternate text user interface for the CADServer 
    640#UserInterface          = tmcsim.cadsimulator.viewer.CADConsoleViewer 
    7 UserInterface          = tmcsim.cadsimulator.viewer.CADServerViewer 
    8 ParamicsProperties     = config/cad_simulator_paramics_config.properties 
    9 ATMSProperties         = config/cad_simulator_atms_config.properties 
    10 MediaProperties        = config/cad_simulator_media_config.properties 
    11 TrafficMgrProperties   = config/traffic_model_config/traffic_model_config.properties 
    12 # The location where the Coordinator writes the simulation time 
    13 ElapsedTimeFile        = webapps/dynamicdata/sim_elapsedtime.json 
    14 # The location where the Coordinator writes the CAD comments log 
    15 CADcommentsLog         = webapps/dynamicdata/CADcomments.log 
     41 
Note: See TracChangeset for help on using the changeset viewer.