CustomPersistenceService
Hi Andy,
Thank you very much for your reply.I have one more doubt in running the CustomPersistenceServiceSample.I can run the sample and the output i am getting is given below.
Workflow created
Saving instance: 88e97aab-0600-40c0-8cc9-d27d9fbd128b
Workflow idling
Saving instance: 88e97aab-0600-40c0-8cc9-d27d9fbd128b
Unlocking Instance
Actually while running i got error in the line given below
TimerEventSubscriptionCollection timers = (TimerEventSubscriptionCollection)rootActivity.GetValue(WorkflowInstance.TimerCollectionProperty);
saying that System.workflow.runtime.workflowInstance does not have definition for timercollection property. So i changed the line as
TimerEventSubscriptionCollection
timers = (TimerEventSubscriptionCollection)rootActivity.GetValue(TimerCollectionProperty); After this i am not getting any message in the console regarding the save completed state activity and the Load completed activity state.Can you help me with this issue?
Thanks in advance.
Karthick.

