How to call WCF service method in single global action?

  • 28 January 2012
  • 1 reply
  • 0 views

Badge +1

Hi All,


 


I would like to call my custom WCF method, on each work flow actions, without calling it in each actions. For Example in each approval or reject actions, particular WCF method should be called.


Is there any global event where I can call my WCF method in one place. Like in ASP.Net Application level events (BeginRequest, EndRequest, etc...)


 


Thanks & Regards,


Anand


1 reply

Badge +8

An option could be to build a custom event receiver that calls your WCF method. You can then wire up which process events (onActivityStarted, onActivityCompleted, etc) should trigger your code. 

Reply