编辑:我要开始悬赏这个问题。目前,我已经开始使用VS2010 Pro Beta开发我的应用程序,但我真的希望它能够用Express版本构建,因为我们通常不是.NET商店,即使有一两个开发人员使用了VS Pro,它也不会提供给我们的整个团队。
要成为公认的答案并领取奖金,您必须提供示例代码和说明,以允许使用VB 2008速成版安装和卸载Windows服务。您不一定需要从我的代码开始(但其要点包括在下面)。
我已经编写了一个vb.net应用程序,希望作为服务运行。目前我使用的是vb.net Express Edition(2008),它没有随“服务”模板一起提供,但我添加了一个服务类(继承自ServiceBase)和一个安装程序类(继承自Installer);在这两种情况下,我都遵循msdn的示例代码。不幸的是,我无法让此代码作为服务进行安装和运行。
这段代码的核心是一个名为sampleListener的TCP侦听器类。如果我将sampleListener类设置为启动对象并运行我的项目,那么它作为控制台应用程序运行良好。
有一个服务类(在下面),它只启动sampleListener。
Public Class sampleSocketService
Inherits System.ServiceProcess.ServiceBase
Public Sub New()
Me.ServiceName = "sample Socket Service"
Me.CanStop = True
Me.CanPauseAndContinue = True
Me.AutoLog = True
End Sub
Shared Sub Main()
System.ServiceProcess.ServiceBase.Run(New sampleSocketService)
End Sub
Protected Overrides Sub OnStart(ByVal args() As String)
sampleListener.Main()
End Sub
End Class
还有一个安装程序类,我认为它是我问题的根源。这是我最初编写的安装程序类。
Imports System
Imports System.Collections
Imports System.Configuration.Install
Imports System.ServiceProcess
Imports System.ComponentModel
<RunInstallerAttribute(True)> _
Public Class sampleSocketServiceInstaller
Inherits Installer
Private serviceInstaller1 As ServiceInstaller
Private processInstaller As ServiceProcessInstaller
Public Sub New()
' Instantiate installers for process and services.
processInstaller = New ServiceProcessInstaller()
serviceInstaller1 = New ServiceInstaller()
processInstaller.Account = ServiceAccount.LocalSystem
serviceInstaller1.StartType = ServiceStartMode.Automatic
' ServiceName must equal those on ServiceBase derived classes.
serviceInstaller1.ServiceName = "sample Socket Service"
' Add installers to collection. Order is not important.
Installers.Add(serviceInstaller1)
Installers.Add(processInstaller)
End Sub
End Class
在此上运行installutil.exe会生成以下消息:
An exception occurred during the Install phase.
System.Security.SecurityException: The source was not found, but some or all event logs could not be searched. Inaccessible logs: Security.
这看起来像是一个安全问题,但我正在使用“以管理员身份运行”打开的命令窗口中运行。
我尝试了一个简单得多的安装程序类,基于一个在线示例:
Imports System.ComponentModel
Imports System.Configuration.Install
<RunInstaller(True)> Public Class ProjectInstaller
Inherits System.Configuration.Install.Installer
End Class
这看起来非常简单,我不知道它可能如何工作,事实上它没有。但是,当使用此版本的Installer类在项目上运行InstallUtil.exe时,InstallUtil.exe不会抛出错误消息,并报告服务已成功安装。
我怀疑我的安装程序类中需要一些代码来完成我第一个示例中的一些工作,但不会执行导致错误的任何部分。
有什么建议吗?
(为了清晰起见,已对其进行了广泛编辑,并添加了最初未包含的代码示例)