共享点。删除作业中的项目,事件将被调用
我删除了 SharePoint 作业中的列表项。 但我不明白为什么我的事件接收器中没有出现事件。这是 SharePoint 的某些功能还是只是错误?当我从网络界面中删除项目时,所有事件都在起作用。
I remove list items inside SharePoint job.
But I cannot get it why events are not rised in my event recievers. Is it some SharePoint feature or just bug? When I remove items from web interface all events are working.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我记得,在所有情况下都会发生事件。确保您的事件侦听器安装在 GAC 中,而不是安装到 Web 应用程序的 bin 文件夹中 - 计时器作业在单独的进程中运行,可能无法通过接收器找到您的程序集。另请检查 SharePoint 日志是否有任何错误...
As far as I remmeber events fire in all cases. Make sure your event listeners are installed in the GAC, not to bin folder of the Web application - timer jobs are running in separate process and may not be able to find your assemblies with receivers. Also check SharePoint logs for any errors...