private bool CheckConnection()
 {
     try
     {
         readerServiceObj.GetVersion();
     }
     catch
     {
         try
         {
             readerServiceObj = InitService(rdrServiceEndpoint);
             readerServiceObj.GetVersion();
         }
         catch { return false; }
     }
     return true;
 }