the lie: Workflow Error: System.InvalidOperationException and the Correlation Token
Whenever I get an error in the pile of logs that is SharePoint Workflow, I have to wonder how this made it through QA. Case and point: a message that returned when executing a CompleteTask activity within a workflow:
This should equate to - check the correlation token you set, logically. It even seems like this is a logical conclusion from the top of procedure stack;
But no, what it actually means is check the Taskid properties.
Figured out with the blog entry by Andy Burns.
System.InvalidOperationException: Correlation value specified does not match the already initialized correlation value on declarationfor activity .
This should equate to - check the correlation token you set, logically. It even seems like this is a logical conclusion from the top of procedure stack;
at ..CorrelationService.ValidateCorrelation()
at ..CorrelationService.InvalidateCorrelationToken()
..
But no, what it actually means is check the Taskid properties.
Figured out with the blog entry by Andy Burns.
Comments
Post a Comment
firstly, thanks in advance for your comment - I don't get very many, so I'm sure to follow up if you leave me a way - secondly, come again.