Sharepoint 计时器作业创建列表项,但不触发项目事件处理程序
我有一个计时器作业,它将一个项目添加到 SP 列表中。 我已将一个“项目已添加”列表项事件处理程序绑定到列表。 当 SharePoint 前端手动将项目添加到列表时,会触发该事件处理程序。
但在计时器作业中创建列表项时不会触发它。
请为此提供任何解决方案/解决方法。
I have a timer job which adds an item to the SP List.
I have bound one Item Added list item event handler to the list.
The event handler gets fired when an item manually added to the List by SharePoint front end.
But it is not triggered when the list item is created within the timer job.
Please provide any solution/workaround for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后,我想通了。我已将调试器附加到 w3wp.exe。
事件处理程序在计时器服务进程下运行。
因此,当我将调试器连接到 OwsTimer 时,它就像一个魅力:)
感谢所有人... –
Finally, I figured it out. I had attached the debugger to w3wp.exe.
Event handler runs under Timer Service Process.
So when I attached the debugger to OwsTimer, it worked like a charm :)
Thanks to all... –