C#中的Windows服务错误

我正在使用c#.目前,我使用Windows 7.当我运行代码时,这给了我错误,例如193:0xc1错误,服务已启动,但停止后出现1053服务错误.这是我的代码.public RupdaterService(){InitializeComponent();this.timer1.Elapsed += n...

我正在使用c#.目前,我使用Windows 7.当我运行代码时,
这给了我错误,例如193:0xc1错误,服务已启动,但停止后出现1053服务错误.
这是我的代码.

    public RupdaterService()
    {
        InitializeComponent();
        this.timer1.Elapsed += new System.Timers.ElapsedEventHandler(this.timer1_Elapsed);
    } 
      protected override void OnStart (string[] args)
    {
        timer1.Enabled=true;
        this.DBEntry("Service Started");
    }
      protected override void OnStop()
    {            
        this.timer1.Enabled = false;
        this.DBEntry("Service Stopped");
    }

    private void timer1_Elapsed(object sender,System.Timers.ElapsedEventArgs e)
    {

        this.DBEntry("Service Running");
        }


 Here is my App.Config.

<?xml version="1.0" encoding="utf-8" ?>

<configuration>

<configSections>

    <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c5***9" >
        <section name="HedefliRUpdater.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5***9" requirePermission="false" />
    </sectionGroup>
</configSections>

<system.serviceModel>

</system.serviceModel>

<applicationSettings>
    <HedefliRUpdater.Properties.Settings>
        <setting name="HedefliRUpdater_srvHedefli_wsrvHermesHedefliMesaj"
            serializeAs="String">
            <value>http://***.com/hedefli/srvHedefli.asmx</value>
        </setting>
    </HedefliRUpdater.Properties.Settings>
</applicationSettings>

提前致谢,

解决方法:

一些事情要检查.这些事发生在我头上:

>事件日志中有任何内容吗?他们有时可以为您提供线索.
>事件日志是否已满?如果Windows无法对其进行写入,它将无法启动该服务.尝试清除应用程序事件日志,看看它是否开始.
> .config文件中是否有语法错误?我们曾经遇到过一个.msi安装程序的问题,该安装程序将< endpoint> < / configuration>结束后的标记.
>好像您正在写数据库.服务运行所在的用户是否有权访问该数据库?
>尝试将Debugger.Break()放在OnStart()的开头,以提示Windows在启动Visual Studio实例时连接它.至少,它会告诉您故障是在OnStart之前还是之后发生.
>您是否有多个< endpoint>在与相同合同匹配的app.config / web.config文件中指定?尝试删除多余的端点

本文标题为:C#中的Windows服务错误

基础教程推荐