2013-12-12 92 views
0

當我添加以下代碼在Windows服務程序的app.config模式信息:找不到當配置quartz.net

 <quartz> 
     <add key="quartz.scheduler.instanceName" value="ExampleDefaultQuartzScheduler"/> 
     <add key="quartz.threadPool.type" value="Quartz.Simpl.SimpleThreadPool, Quartz"/> 
     <add key="quartz.threadPool.threadCount" value="10"/> 
     <add key="quartz.threadPool.threadPriority" value="2"/> 
     <add key="quartz.jobStore.misfireThreshold" value="60000"/> 
     <add key="quartz.jobStore.type" value="Quartz.Simpl.RAMJobStore, Quartz"/> 
    </quartz> 

它提示:

Could not find schema information for the element `key`. 
    Could not find schema information for the attribute `quartz`. 
    Could not find schema information for the element `value`. 

我相信我已經使用job_scheduling_data_2_0.xsd文件在背景中。

和預定義的石英:

<configSections> 
     <section name="quartz" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.5000.0,Culture=neutral, PublicKeyToken=b77a5c561934e089"/> 
     <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/>  
</configSections> 

問題出在哪裏,在哪裏找到的架構信息?

什麼時候是標籤<quartz>命名空間?

我應該在哪裏找到quartz.net的xsd文件?

回答

0

正常的原因是你的配置文件沒有像*的.xsd在架構文件:.. \微軟的Visual Studio \ XML \架構文件夾。

您可以省略這些提示,它不會影響您的程序運行

或者您可以自己編寫xsd模式文件。