hi all...  question for any event subscriber gurus (or just anyone
who knows more than me, which probably won't take much ;) )<br>
<br>
i have a set of actions that i would like to have trigger off of a
particular state in a workflow.&nbsp; in my unittest i can see that the
workflow fires the event, but my subscriber doesn't pick up on
it.&nbsp; similarly, the subscriber i have in zcml in the application
proper does not respond when the workflow transition event is
fired.&nbsp; <br>
<br>
the functionality works if i explicitly call my subscription method
against the event, but that only proves that the functionality of the
code isn't broken...&nbsp; <br>
<br>
the relevant zcml portion is as follows:<br>
&nbsp;&nbsp;&nbsp; &lt;subscriber<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for=&quot;qarelease.interfaces.IRelease&nbsp;&nbsp;&nbsp; <br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; zope.app.workflow.stateful.interfaces.IAfterTransitionEvent&quot;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; factory=&quot;.release.notifyTransition&quot;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /&gt;<br>
<br>
the unittest subscribes with ztapi as follows:<br>
&nbsp;&nbsp;&nbsp; ztapi.subscribe((IRelease, IAfterTransitionEvent), None, notifyTransition)<br>
<br>
this seems, from both srichter's book and philiKON's book to be the
right way to do this (moving from ztapi.handle to ztapi.subscribe since
handle is being deprecated).&nbsp; <br>
<br>
does anyone have any experience in attempting to do anything like this?<br>
<br>