2009-04-23 7 views
2

Je développe actuellement un service Windows avec une cible .Net 3.5.Développement de services Windows dans .Net 3.5

J'ai un certain nombre de questions avec ceci:

  1. Bien que j'ai un projet d'installation dans la solution, il doesent installer le service (la plate-forme est vista) même quand le programme d'installation se termine avec succès. Je dois installer manuellement le service en utilisant le InstallUtil.exe qui se trouve dans le dossier .Net 2.0 et pas le dossier 3.5.

  2. Je ne peux pas accéder au fichier app.config à l'aide de l'objet ConfigrationManager. Je suppose que c'est parce que le service en cours d'exécution n'est pas exécuté à partir de son répertoire d'installation. Quelqu'un sait-il un moyen pour moi d'y accéder en toute sécurité?

Tous les conseils et l'expérience à ce sujet seraient grandement appréciés.

James

Répondre

2

Installation du service nécessite la création d'une action personnalisée dans votre projet d'installation, sinon il ne soit pas enregistrée.

3

Je l'ai fait moi-même récemment, et voici un code qui vous permettra de passer "/ install" ou "/ uninstall" comme option de ligne de commande pour installer votre service. Vous pouvez changer cela pour installer automatiquement si vous le souhaitez. Il accède également au fichier app.config (mon service d'origine le fait dans sa boucle principale). Comme vous pouvez le voir, je le configure pour qu'il fonctionne en tant qu'utilisateur spécifique, mais vous pouvez définir spi.Account = ServiceAccount.LocalSystem; et omettez le nom et le mot de passe. Espérons que cela aide:

namespace MyService 
{ 
    public class ServiceMonitor : ServiceBase 
    { 
     private System.ComponentModel.Container _components = null; 
     private static string _service_name = "MyServiceName"; 

     public ServiceMonitor() 
     { 
      InitializeComponent(); 
     } 

     private void InitializeComponent() 
     { 
      this.CanHandlePowerEvent = true; 
      this.CanPauseAndContinue = true; 
      this.CanShutdown = true; 
      this.CanStop = true; 
      this.ServiceName = _service_name; 
     } 

     protected override void Dispose(bool disposing) 
     { 
      if (disposing && _components != null) 
      { 
       _components.Dispose(); 
      } 
      base.Dispose(disposing); 
     } 

     static void Main(string[] args) 
     { 
      string opt = null;    

      if (args.Length >= 1) 
      { 
       opt = args[0].ToLower(); 
      } 


      if (opt == "/install" || opt == "/uninstall") 
      { 
       TransactedInstaller ti = new TransactedInstaller(); 
       MonitorInstaller mi = new MonitorInstaller(_service_name); 

       ti.Installers.Add(mi); 

       string path = String.Format("/assemblypath={0}", Assembly.GetExecutingAssembly().Location); 
       string[] cmdline = { path }; 

       InstallContext ctx = new InstallContext("", cmdline); 

       ti.Context = ctx; 

       if (opt == "/install") 
       { 
        Console.WriteLine("Installing"); 
        ti.Install(new Hashtable()); 
       } 
       else if (opt == "/uninstall") 
       { 
        Console.WriteLine("Uninstalling"); 
        try 
        { 
         ti.Uninstall(null); 
        } 
        catch (InstallException ie) 
        { 
         Console.WriteLine(ie.ToString()); 
        } 
       } 
      } 
      else 
      { 
       ServiceBase[] services; 
       services = new ServiceBase[] { new ServiceMonitor() }; 
       ServiceBase.Run(services); 
      } 
     } 

     protected override void OnStart(string[] args) 
     { 
      // 
      // TODO: spawn a new thread or timer to perform actions in the background. 
      // 
      base.OnStart(args); 
     } 

     protected override void OnStop() 
     { 
      // 
      // TODO: stop your thread or timer 
      // 
      base.OnStop(); 
     } 
    } 

    [RunInstaller(true)] 
    public class MonitorInstaller : Installer 
    { 
     public MonitorInstaller() 
      : this("MyServiceName") 
     { 
     } 

     public MonitorInstaller(string service_name) 
     { 
      ServiceProcessInstaller spi = new ServiceProcessInstaller(); 

      spi.Account = ServiceAccount.User; 
      spi.Password = ConfigurationManager.AppSettings["Password"]; 
      spi.Username = ConfigurationManager.AppSettings["Username"]; 

      ServiceInstaller si = new ServiceInstaller(); 

      si.ServiceName = service_name; 
      si.StartType = ServiceStartMode.Automatic; 
      si.Description = "MyServiceName"; 
      si.DisplayName = "MyServiceName"; 

      this.Installers.Add(spi); 
      this.Installers.Add(si); 
     } 
    } 
} 
1

Comme d'autres l'ont dit, vous devez créer un projet d'installation pour effectuer l'installation. J'ai également écrit batch fichiers pour le faire sans l'installation.

Pour vous aider à créer un projet d'installation, j'ai trouvé les liens suivants utiles.

How to create a setup project for a Windows Service application in Visual C#

Windows Services in C#: Part 2: Adding an Installer for Your Windows Service

How to: Add Installers to Your Service Application