我安装了一个Windows服务器,它必须通过OnStart
中的以下方法从App.Config文件中获取一些字符串 - ConfigurationManager.AppSettings["stringName"];
在App.Config中,我还为日志文件定义了source
,我用它来写入我的日志文件。
但是,当我成功安装我的服务并尝试从Serivce Control Explorer
My Computer -> Manage - > Device Manager
内启动时,我收到一条消息说
The service on the local computer and then stopped. Some services stop automatically if not used by toher applications
在Windows事件查看器中,我收到以下错误详细信息(可能在启动服务时抛出异常)
以下是相同的错误详情:
Service cannot be started. System.Configuration.ConfigurationErrorsException: Configuration system failed to initialize ---> System.Configuration.ConfigurationErrorsException: Unrecognized configuration section add. (C:\Program Files (x86)\Default Company Name\ServiceSetup\ServiceChecker.exe.Config line 3)
at System.Configuration.ConfigurationSchemaErrors.ThrowIfErrors(Boolean ignoreLocal)
at System.Configuration.BaseConfigurationRecord.ThrowIfParseErrors(ConfigurationSchemaErrors schemaErrors)
at System.Configuration.ClientConfigurationSystem.EnsureInit(String configKey)
--- End of inner exception stack trace ---
at System.Configuration.ClientConfigurationSystem.EnsureInit(String configKey)
at System.Configuration.ClientConfigurationSystem.System.Configuration.Internal.IInternalConfigSystem.GetSection(String sectionName)
at System.Configuration.ConfigurationManager.GetSection(String sectionName)
at System.Configuration.PrivilegedConfigurationManager.GetSection(String sectionName)
at System.Dia...
以上详细信息显示了与服务的.exe.config
文件相关的错误详细信息。我已尝试卸载并重新安装该服务,并且该服务的安装帐户设置为Local system
,其具有广泛的系统优势。
我在项目中的App.Config:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="UtilName" value="sample.exe"/>
<add key="App1" value="MyApp"/>
<add key="App1E" value="MyApp.exe"/>
<add key="App2" value="MyApp2"/>
<add key="App2E" value="MyApp2.exe" />
<add key="AppDirectory" value="Company\MyProject" />
<add key="CMDArgs" value="\start"/>
</appSettings>
<system.diagnostics>
<sources>
<source name="ServiceTrace" switchName="ServiceTraceSwitch" switchType="System.Diagnostics.SourceSwitch">
<listeners>
<add name="ServiceLog" type="System.Diagnostics.TextWriterTraceListener" initializeData="servicetrace.log"/>
</listeners>
</source>
</sources>
<switches>
<add name="ServiceTraceSwitch" value="Information" />
</switches>
<trace autoflush="true" indentsize="4"></trace>
</system.diagnostics>
</configuration>
答案 0 :(得分:3)
似乎您的app.config(或.exe.config)包含无法识别的部分。错误消息通常表示类似
无法识别的配置部分'部分名称'
所以我假设您刚刚添加了配置值而没有所需的父元素。该元素必须添加为该部分的子元素。确保它看起来像这样:
<configuration>
<appSettings>
<add key="MyKey" value="MyValue" />
</appSettings>
...some more configuration...
</configuration>
答案 1 :(得分:0)
.config文件中存在语法错误,错误:
Unrecognized configuration section add.
这表示您可能错过了配置文件中的外部部分。应该是这样的:
<section>
<add ... >
</section>