我正在使用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服务错误
基础教程推荐
- 如何使用C#代码创建快捷方式文件详解 2022-12-31
- c# – 使用实体框架将更改保存回数据库 2023-11-23
- 第一讲:第一个C#程序及内存中的数据(一) 2023-11-24
- C#使用String和StringBuilder运行速度测试及各自常用方法简介 2023-01-06
- C# mysql 处理 事务 回滚 提交 2023-11-25
- C#(.Net)将非托管dll嵌入exe中的实现 2023-05-11
- C#实现数独解法 2023-06-15
- 基于C#的抽象类别详解 2022-12-01
- C# 标准事件流实例代码 2023-03-09
- C#实现计算器窗体程序 2023-05-16