1

我一直在寻找答案,但没有找到答案,所以我发布了这个。

我已经建立了一个 Windows 服务,我必须将它安装在客户服务器上。我已经在本地成功地测试了它(通过 Visual Studio cmd 提示安装了 installutil.exe)。现在,我正在尝试使用 Wix Toolset 3.7 进行安装。该服务安装并启动正常,但我没有从中得到任何东西。它什么都不做,没有调用数据库(应该如此),什么也没有。它在那里,它活着,但它不做蹲下。有点懒惰的服务。

我不知道我做错了什么。这是我的维克斯代码:

<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
    <Product Id="*" Name="NeoSrvKrka" Language="1033" Version="1.0.0.0" Manufacturer="Neolab d.o.o." UpgradeCode="04f2a5be-92e1-4c53-8e45-7ae2740a9098">
        <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" Manufacturer="Neolab d.o.o." />

        <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
        <MediaTemplate />

        <Feature Id="ProductFeature" Title="NeoSrvKrka" Level="1">
            <ComponentGroupRef Id="ProductComponents" />
        </Feature>
    </Product>

    <Fragment>
        <Directory Id="TARGETDIR" Name="SourceDir">
            <Directory Id="ProgramFilesFolder">
                <Directory Id="INSTALLFOLDER" Name="NeoSrvKrka" />
            </Directory>
        </Directory>
    </Fragment>

    <Fragment>
        <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
            <!-- TODO: Remove the comments around this Component element and the ComponentRef below in order to add resources to this installer. -->
             <Component Id="ProductComponent">
         <File Id="NeoSrvExe" Name="SalusWindowsService.exe" Source="..\SalusWindowsService\bin\Debug\SalusWindowsService.exe" Vital="yes" KeyPath="yes"></File>
         <File Id="NeoSrvExeConfig" Name="SalusWindowsService.exe.config" Source="..\SalusWindowsService\bin\Debug\SalusWindowsService.exe.config" Vital="yes" KeyPath="no"></File>
         <ServiceInstall
                    Id="ServiceInstaller"
                    Type="ownProcess"
                    Vital="yes"
                    Name="SalusKrkaService"
                    DisplayName="Salus Krka Service"
                    Description="Windows service za prenos narocil iz Salusa v Krko"
                    Start="auto"
                    Account="LocalSystem"
                    ErrorControl="ignore"
                    Interactive="no"
              >
         </ServiceInstall>
         <ServiceControl Id="StartService" Start="install" Stop="both" Remove="uninstall" Name="SalusKrkaService" Wait="yes" />
             </Component> 
        </ComponentGroup>
    </Fragment>
</Wix>

在我的应用程序中,我还创建了 ProjectInstaller 文件和它周围的所有魔法(也许我不应该将它与 wix 一起使用?)。哦,我正在使用 Visual Studio 2012、.NET 4.5、c#、windows 7(将是生产中的 windows server 2012)。

我正在添加一些应该执行的代码:

namespace SalusWindowsService

{ 公共部分类 Krka : ServiceBase { 公共 Krka() { InitializeComponent(); }

    protected override void OnStart(string[] args)
    {
        try
        {
            Timer timer = new Timer();
            timer.Interval = 3000; //5 minut
            timer.Elapsed += new ElapsedEventHandler(OnTimedEvent);
            timer.Enabled = true;

            GC.KeepAlive(timer);
        }
        catch (Exception exc)
        {
            //NeoException.Handle(exc);
        }
    }

    private static void OnTimedEvent(object source, ElapsedEventArgs e)
    { //do something, but it is not doing anything...}}}

我在代码中甚至在服务的主函数(它只是初始化基类)中放置了一些断点,但我从来没有到达那里。

4

1 回答 1

0

(由问题中的 OP 回答。转换为社区 wiki 答案。请参阅没有答案的问题,但问题已在评论中解决(或在聊天中扩展)

OP写道:

原来我没有添加足够的 dll 来安装。

因此,Wix 或代码没有任何问题。提醒那些犯同样错误的人。您必须在 wix 下添加所有 dll-s。因此,如果您的应用程序的 Debug/bin 文件夹中有多个 ddl-s,则必须将它们中的所有(或至少许多)添加到 . 这意味着,一个标签内有许多标签。请注意,只有一个标签的 KeyPath 属性设置为“yes”。

于 2015-01-29T21:29:50.380 回答