在 .NET 上安装 Windows 服务时探测加载异常



我有一个用.NET编写的Windows服务,我使用了探测功能,以便将dll加载到这个Windows服务中。但是,当我打开命令提示符并尝试使用 installutil.exe 安装 Windows 服务时,我收到错误,例如:"System.Reflection.ReflectionTypeLoadException:无法加载一个或多个请求的类型。检索 LoaderExceptions 属性以获取更多信息。中止安装",

另一方面,当我将dll移动到与Windows服务相同的文件夹中并重复安装过程时,Windows服务已成功安装。

您对此问题有任何想法或建议吗?,在 .NET 的 Windows 服务安装中是否存在探测问题?

我在项目中遇到了同样的问题,在我的 Windows 服务项目中,我有以下app.config部分:

<runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
         <probing privatePath="SDK" />
    </assemblyBinding>
</runtime>
如果我将服务

作为控制台执行,一切都很好,但是当我尝试安装它时,installutil 失败了,我得到了同样的异常,所以我的解决方案是通过命令行自行安装服务:如下所示:

cmd: hotspotcenter -i <service_name="service name">
// service_name i made it optional

安装程序类帮助程序:

internal static class BasicServiceInstaller
{
    public static void Install(string serviceName)
    {
        CreateInstaller(serviceName).Install(new Hashtable());
    }
    public static void Uninstall(string serviceName)
    {
        CreateInstaller(serviceName).Uninstall(null);
    }
    private static Installer CreateInstaller(string serviceName)
    {
        var installer = new TransactedInstaller();
        installer.Installers.Add(new ServiceInstaller
        {
            ServiceName = serviceName,
            DisplayName = serviceName,
            StartType = ServiceStartMode.Manual
        });
        installer.Installers.Add(new ServiceProcessInstaller
        {
            Account = ServiceAccount.LocalSystem
        });
        var installContext = new InstallContext(
            serviceName + ".install.log", null);
        installContext.Parameters["assemblypath"] =
            Assembly.GetEntryAssembly().Location;
        installer.Context = installContext;
        return installer;
    }
}

在服务项目的主条目中:

 if (Environment.UserInteractive)
 {
            bool install = false;
            bool uninstall = false;
            string serviceName = "YourDefaultServiceName";
            var p = new OptionSet()
              .Add<bool>("i|install", "Install Windows Service", i => install = i)
              .Add<bool>("i|install=", "Install Windows Service", i => install = i)
              .Add<bool>("u|uninstall", "Uninstall Window Service", u => uninstall = u)
              .Add<string>("sn|service_name=", "Service Name", n => serviceName = n);
            p.Parse(args);
            if (install)
            {
                BasicServiceInstaller.Install(serviceName);
                return;
            }
            else if (uninstall)
            {
                BasicServiceInstaller.Uninstall(serviceName);
                return;
            }
            // if no install or uninstall commands so start the service as a console.
            var host = new YourService();
            host.Start(args);
            Console.ReadKey();
        }
        else
        {
            ServiceBase.Run(new HotspotCenterService());
   }

如果没有确切的信息,我会建议如下:

  • 检查异常详细信息以查看到底出了什么问题
  • 使用 Fusion Log Viewer 查看哪些程序集绑定失败
  • 检查探测配置是否与部署匹配

探测配置如下所述。

相关内容

  • 没有找到相关文章

最新更新