private bool connectToService()
        {
            try
            {
                EndpointAddress ep = new EndpointAddress("net.tcp://" + osae.DBConnection + ":8731/WCFService/");
                InstanceContext context = new InstanceContext(this);
                wcfObj = new WCFServiceReference.WCFServiceClient(context, "NetTcpBindingEndpoint", ep);
                wcfObj.Subscribe();
                osae.AddToLog("Connected to Service", true);

                return true;
            }
            catch (Exception ex)
            {
                osae.AddToLog("Unable to connect to service.  Is it running? - " + ex.Message, true);
                return false;
            }
        }