Dear all,
I have some manual activities in a workflow that must be defined using custom wdk components.
Is it possible to customize taskspace in order to intercept invoke custom wdk components that will handle specific manual activities ?
What I was looking for is some sort of interceptor to fire the component call according to the activity and process name.
I mean a sort of logic like this :
if(activityName = 'ActivityA' and processName = 'SimpleProcess' ) {
use customComponentA
} else if(activityName = 'ActivityB' and processName = 'SimpleProcess' ) {
use customComponentB
} else {
use taskspace default behaviour
}