up vote 1 down vote favorite
share [g+] share [fb]

I have a workflow running on an item in a list. The workflow has an OnWorkflowItemChanged activity sitting within a While activity. I know that the workflow enters the While loop, and if I update the item through the UI, it fires the OnWorkflowItemChanged activity. However, if I update the item programmatically (through a console application), it not only does NOT fire the OnWorkflowItemChanged activity, but it stops responding to updates through the UI as well.

Has anyone seen this before? Is there a way to update the list item programmatically and have the workflow both respond to the event and continue responding to future events?

edit: It works fine if I use the Lists web service to update the item. Why does it mess up if I use the object model?

link|improve this question

67% accept rate
feedback

3 Answers

I know when updating a list item through the object model in an event receiver you can call SPEventReceiverBase.DisableEventFiring(), etc. SPEventReceiverBase.DisableEventFiring() Have you tried that, or is there a workflow equivalent?

Here's a hack to disable event firing on updates that aren't triggered from inside an event receiver: link text

link|improve this answer
DisableEventFiring() and EnableEventFiring() are for Event Receivers to prevent recursive calls. They are not available for workflows or for external code. Also, I don't see why calling the SPListItem.Update() method would disable the event firint to begin with - it shouldn't. – zimdanen Jun 24 '09 at 13:57
added the link i meant to include above – Chloraphil Jun 24 '09 at 14:01
I tried setting it to EnableEventFiring both before and after the Update, but it still does not fire the event or respond through the UI. item["Decision 1"] = "Concur"; SPEventManagerWrapper.EnableEventFiring(); item.Update(); SPEventManagerWrapper.EnableEventFiring(); – zimdanen Jun 24 '09 at 14:11
you have two enables there instead of one disable and one enable – Chloraphil Jun 24 '09 at 14:13
I know. The problem is not that events are firing and I want them not to. The problem is that events are not firing and I need them to. – zimdanen Jun 24 '09 at 14:15
show 1 more comment
feedback

Yup i agree the problem is that event is not at all firing. I have noticed that if you reset IIS it works for the first time but after that there is no update.

link|improve this answer
feedback
up vote 0 down vote accepted

It looks like the only way to make the events fire is to use the Lists Web Service.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.