this is my ejb-jar.xml
| <ejb-jar>
| <assembly-descriptor>
| <interceptor-binding>
| <ejb-name>*</ejb-name>
|
<interceptor-class>org.jboss.seam.ejb.SeamInterceptor</interceptor-class>
| </interceptor-binding>
| </assembly-descriptor>
| </ejb-jar>
|
problem solved by placing
| @Interceptors(SeamInterceptor.class)
|
in my RegisterAction ejb
but why do I need this?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3964335#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...