Ejemplo n.º 1
0
        //also starts the server
        static void Main(string[] args)
        {
            String docPath, scmPath;
            docPath = "Config.xml";
            scmPath = "Config.xsd";
            xHandle config = new xHandle(docPath, scmPath);
            try
            {
                if (!config.verify())
                {
                    Console.WriteLine("Bad config file");
                    Environment.Exit(1);
                }
                Console.WriteLine("Successfully loaded xml");
            }
            catch (customException e)
            {
                Console.WriteLine(e.ErrorMessage);
                Environment.Exit(1);
            }

            Server myServer = new Server(config);
            Thread myThread = new Thread(new ThreadStart(myServer.ListenForClients));
            myThread.Start();

            while (!myThread.IsAlive) ;         //spin a while for thread to be alive
            while (myThread.IsAlive)
                Thread.Sleep(100);          //do nothing while thread is alive
            myThread.Join();
        }
Ejemplo n.º 2
0
 public Server(xHandle temp)
 {
     config = temp;
     tcpListener = new TcpListener(IPAddress.Any, 1303);
 }