Where I can read about relation between aspect instance and contexts (JNDI, Security,
Transaction, etc) in JBossAS ?
For example.
There are Stateless EJB:
| @Stateless
| public class A implements B{
| ...
| }
|
and aspect:
| public class AAspect{
| @Bind (pointcut = "execution(* A->*(..))")
| public Object invoke(Invocation invocation) throws Throwable {
| Context ctx=new InititalContext();
| }
| }
|
Which context I receive in "new InitialContext()" operation?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4105964#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...