[ 
https://issues.apache.org/jira/browse/TOMEE-1013?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Luca Masini updated TOMEE-1013:
-------------------------------

    Attachment: testcase-cdi-stateful.zip

To reproduce the problem run:

mvn test

and see that the only test fail because the event is not correctly delivered.

In the log you can also see:

INFO: Cannot send event to bean in non-active context : [StatefulBean, 
Name:null, WebBeans Type:ENTERPRISE, API 
Types:[java.io.Serializable,java.lang.Object,net.lucamasini.tomee.testcase.StatefulBean],
 Qualifiers:[javax.enterprise.inject.Any,javax.enterprise.inject.Default]]

but if you try to run the war inside TomEE all works fine.

                
> ContextNotActiveException using TomEE embedded into Arquillian
> --------------------------------------------------------------
>
>                 Key: TOMEE-1013
>                 URL: https://issues.apache.org/jira/browse/TOMEE-1013
>             Project: TomEE
>          Issue Type: Bug
>          Components: TomEE Arquillian Adapters
>    Affects Versions: 1.5.2
>         Environment: Mac OS, Java 1.7.0_10
>            Reporter: Luca Masini
>         Attachments: testcase-cdi-stateful.zip
>
>
> You cannot use a transactional event listener from a Stateful EJB to a 
> business method of the same bean:
> @Stateful
> public class MySFEJB {
> ....
>     public void sender() {
>         transactionListener.fire(new Payload());
>     }
>     public void receiver(@Observes(during = TransactionPhase.AFTER_SUCCESS) 
> Payload payload) {
> // code omitted
>     }
> into the log you can read:
> INFO: Cannot send event to bean in non-active context : 
> [ExtendedEntityManagerService, Name:null, WebBeans Type:ENTERPRISE, API 
> Types:[java.io.Serializable,java.lang.Object,net.lucamasini.synch.mobile.boundary.ExtendedEntityManagerService],
>  Qualifiers:[javax.enterprise.inject.Any,javax.enterprise.inject.Default]]
> then inside the container this Exception is raised (BeanManagerImpl.java:351):
>             throw new ContextNotActiveException("WebBeans context with scope 
> type annotation @"
>                                                 + scopeType.getSimpleName() + 
> " does not exist within current thread");
> Everything works fine using the same code inside TomEE as a normal container 
> and not for Integration Tests.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to