sharepoint2010 timer 参数与调试

搞了三个小时,查网上资料等,终于搞定调试sharepoint2010 timer的方法,记录一下:

1、timer读取自己的配置参数

  在 C:\Program Files\Common Files\Microsoft Shared\web server extensions\14\BIN  目录里有一个文件,文件名叫做:OwsTimer.exe.config,

修改其内容,增加配置参数,

<configuration>

  <appSettings>

   <add key="YourKey" value="YourValue" />

  </appSettings>

</configuration>

然后用 System.Configuration.ConfigurationManager.AppSettings["YourKey"];   或System.Configuration.ConfigurationManager.AppSettings.Get("YourKey"); 来取得这个值。

2、调试

  把自己写的服务部署,激活后,debug模式下,附加owstimer进程,等着到断点出调试,注意修改代码后,尤其是变量赋值修改后,要在服务中重启Sharepoint 2010 time服务,否则仍会用以前的值,每次调试要重启该服务。

 

 

 

你可能感兴趣的:(SharePoint)