I have an ejb-jar with 3 beans and a default interceptor with wildcard "*" that applies to all beans.
Problem 1: --------------- In FirstBean, I specify an @ExcludeDefault for a method. This sticks. In SecondBean, I specify an <exclude-default-interceptor> for one method of the bean. It is ignored. In ThirdBean, I specify an <exclude-default-interceptor> for the whole class. It is ignored. Problem 2: --------------- I now specify an @ExcludeDefaultInterceptor at the class level. Only the lifecycle events are excluded. The methods calls are still intercepted. Cheers Prasad
