Index: trunk/src/spikes/ShowUserDir.java
===================================================================
--- trunk/src/spikes/ShowUserDir.java	(revision 360)
+++ trunk/src/spikes/ShowUserDir.java	(revision 360)
@@ -0,0 +1,27 @@
+
+package spikes;
+
+import java.io.FileInputStream;
+import java.util.Properties;
+import java.util.logging.Level;
+import javax.swing.JOptionPane;
+import javax.swing.JWindow;
+import tmcsim.common.SimulationException;
+
+/**
+ *
+ * @author jdalbey
+ */
+public class ShowUserDir
+{
+    public ShowUserDir()
+    {
+        JOptionPane.showMessageDialog(new JWindow(), 
+                "\nUser.Dir=" + System.getProperty("user.dir"),
+                "Show User Dir", JOptionPane.INFORMATION_MESSAGE);                        
+    }   
+    public static void main(String[] args)
+    {
+        new ShowUserDir();
+    }
+}
Index: trunk/src/tmcsim/application.properties
===================================================================
--- trunk/src/tmcsim/application.properties	(revision 356)
+++ trunk/src/tmcsim/application.properties	(revision 360)
@@ -1,5 +1,5 @@
-#Thu, 04 Apr 2019 11:09:39 -0700
+#Thu, 04 Apr 2019 15:32:24 -0700
 
-Application.revision=355
+Application.revision=356
 
-Application.buildnumber=119
+Application.buildnumber=121
Index: trunk/src/tmcsim/cadsimulator/CADServer.java
===================================================================
--- trunk/src/tmcsim/cadsimulator/CADServer.java	(revision 355)
+++ trunk/src/tmcsim/cadsimulator/CADServer.java	(revision 360)
@@ -181,5 +181,5 @@
      * Properties file for the CADSimulator.
      */
-    private Properties cadSimulatorProperties;
+    private Properties cadServerProperties;
 
     /**
@@ -199,6 +199,6 @@
         try
         {
-            cadSimulatorProperties = new Properties();
-            cadSimulatorProperties.load(new FileInputStream(propertiesFile));
+            cadServerProperties = new Properties();
+            cadServerProperties.load(new FileInputStream(propertiesFile));
             cadSimLogger.logp(Level.INFO, "CADSimulator", "Constructor",
                     "Properties loaded from " + propertiesFile);
@@ -219,5 +219,5 @@
         {
             String userInterfaceName =
-                    cadSimulatorProperties.getProperty(
+                    cadServerProperties.getProperty(
                     CAD_PROPERTIES.USER_INTERFACE.name);
             if (userInterfaceName == null)
@@ -244,8 +244,8 @@
 
             startRegistry(Integer.parseInt(
-                    cadSimulatorProperties.getProperty(
+                    cadServerProperties.getProperty(
                     CAD_PROPERTIES.COOR_RMI_PORT.name).trim()));
             startRegistry(Integer.parseInt(
-                    cadSimulatorProperties.getProperty(
+                    cadServerProperties.getProperty(
                     CAD_PROPERTIES.CAD_RMI_PORT.name).trim()));
 
@@ -253,9 +253,9 @@
 
             theATMSMgr = new ATMSManager(
-                    cadSimulatorProperties.getProperty(
+                    cadServerProperties.getProperty(
                     CAD_PROPERTIES.ATMS_PROP_FILE.name));
             
             theTrafficMgr = new TrafficModelManager(
-                    cadSimulatorProperties.getProperty(
+                    cadServerProperties.getProperty(
                     CAD_PROPERTIES.TRAFFICMGR_PROP_FILE.name),
                     theCoordinator);
@@ -264,15 +264,15 @@
 
             theMediaMgr = new MediaManager(
-                    cadSimulatorProperties.getProperty(
+                    cadServerProperties.getProperty(
                     CAD_PROPERTIES.MEDIA_PROP_FILE.name),
                     theATMSMgr, theModel);
 
             theParamicsSimMgr = new ParamicsSimulationManager(
-                    cadSimulatorProperties.getProperty(
+                    cadServerProperties.getProperty(
                     CAD_PROPERTIES.PARAMICS_PROP_FILE.name),
                     theCoordinator, theMediaMgr);
 
             theSoundPlayer = new SoundPlayer(
-                    cadSimulatorProperties.getProperty(
+                    cadServerProperties.getProperty(
                     CAD_PROPERTIES.AUDIO_LOCATION.name));
             theSoundPlayer.start();
@@ -283,5 +283,5 @@
             //Begin accepting Client connections
             CADSimulatorSocketHandler tmsh = new CADSimulatorSocketHandler(
-                    Integer.parseInt(cadSimulatorProperties.getProperty(
+                    Integer.parseInt(cadServerProperties.getProperty(
                     CAD_PROPERTIES.CLIENT_PORT.name).trim()));
             tmsh.start();
@@ -297,10 +297,10 @@
         try
         {
-            if (cadSimulatorProperties.getProperty(
+            if (cadServerProperties.getProperty(
                     CAD_PROPERTIES.CMS_XML_FILE.name) != null)
             {
                 CMSDiversionDB.getInstance().loadFromXML(
                         DocumentBuilderFactory.newInstance().newDocumentBuilder()
-                        .parse(new File(cadSimulatorProperties.getProperty(
+                        .parse(new File(cadServerProperties.getProperty(
                         CAD_PROPERTIES.CMS_XML_FILE.name))));
             }
@@ -311,5 +311,5 @@
 
             JOptionPane.showMessageDialog(new JWindow(), "Unable to open "
-                    + cadSimulatorProperties.getProperty(CAD_PROPERTIES.CMS_XML_FILE.name),
+                    + cadServerProperties.getProperty(CAD_PROPERTIES.CMS_XML_FILE.name),
                     "Initialization Error", JOptionPane.WARNING_MESSAGE);
         }
