First of all let me state, that the following code example worked just fine in GF 3.0.1. The troubles started when we switched to GF 3.1.

I'm using a method

@Asynchronous
        public void executeFlowStep(@Observes(during=TransactionPhase.AFTER_COMPLETION) ExecuteFlowStepEvent executeFlowStepEvent) { 

Since the switch, whenever this should receive an ExecuteFlowStepEvent I get the following error message:

WELD-000401 Failure while notifying an observer of event [package].ExecuteFlowStepEvent

No further information or Stacktrace is given. It works if I remove the @Asynchronous annotation and the AFTER_COMPLETION attribute, of course this breaks the program as I depend on the AFTER_COMPLETION timing.

I tried to ask for help on the Weld Forums, so far to no avail, although there seem to be other people with the same problem: http://seamframework.org/Community/WeldUsers

I at least would like to know: Is this a bug, or is this wanted. Does this imply that Weld does NOT work with Asynchronous methods/AFTER_COMPLETION attributes? Why did this work in GF 3.0.1? Has anyone managed to make this work on GF 3.1?

link|improve this question
might be a bug. try reporting it. – Bozho Apr 29 '11 at 13:59
Posted it also at the Seam/Weld forums, no one seems to be interested there so I submitted it to the Glassfish Bugtracker a week ago, we'll see if anything comes out of that. If anyone has similar issues, this is the URL to the tracker: java.net/jira/browse/GLASSFISH-16513 – Michael May 9 '11 at 14:13
I would report it directly to Weld. Glashfish uses Weld as its CDI implementation. – Bozho May 9 '11 at 14:30
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.