public void Conectar()
 {
     _cliente = this.GetCurrentCallback();
     if (timer.Enabled != true)
     {
         timer.Interval = Convert.ToInt32(ConfigurationManager.AppSettings["intervalo"]);
         timer.Elapsed += new System.Timers.ElapsedEventHandler(RequestMostrarEstados);
         timer.Start();
     }
 }
 public Cliente()
 {
     _clienteCallback = null;
     _nombreUsuaio    = "";
 }