Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <configuration>
  3. <configSections>
  4. <section name="quartz" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.5000.0,Culture=neutral, PublicKeyToken=b77a5c561934e089" />
  5. <sectionGroup name="common">
  6. <section name="logging" type="Common.Logging.ConfigurationSectionHandler, Common.Logging" />
  7. </sectionGroup>
  8. </configSections>
  9.  
  10. <quartz>
  11. <add key="quartz.scheduler.instanceName" value="CommerceScheduler" />
  12. <!-- Configure Thread Pool -->
  13. <add key="quartz.threadPool.type" value="Quartz.Simpl.SimpleThreadPool, Quartz" />
  14. <add key="quartz.threadPool.threadCount" value="10" />
  15. <add key="quartz.threadPool.threadPriority" value="Normal" />
  16. <!-- Configure Job Store -->
  17. <!-- <add key="quartz.jobStore.misfireThreshold" value="60000" /> -->
  18. <!-- <add key="quartz.jobStore.type" value="Quartz.Simpl.RAMJobStore, Quartz" /> -->
  19. <add key="quartz.plugin.xml.type" value="Quartz.Plugin.Xml.JobInitializationPlugin, Quartz" />
  20. <add key="quartz.plugin.xml.fileNames" value="E:\\CNWMaintenanceService\\quartz_jobs.xml" />
  21. </quartz>
  22.  
  23. <appSettings>
  24. <!-- Log settings -->
  25.  
  26. <add key="log.path" value="E:\\CNWMaintenanceService\\Logs"/>
  27. <add key="log.name" value="CNWWinSvc"/>
  28. <add key="log.types" value="info,warning,error,track"/>
  29. <add key="log.dest" value="5"/>
  30.  
  31. <!-- File monitoring settings -->
  32. <add key="filewatchpath" value="E:\\CNWMaintenanceService\\filewatchdir"/>
  33.  
  34. <!-- Data migration config -->
  35. <add key="data_migration_cfg" value="E:\\CNWMaintenanceService\\DataMigrationConfig.xml" />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement