dynamicInvoke had the proper TCL set, problem is nothing was running through it because
I'd removed registration of the Container with AOP via the ClassProxyHack:
- Dispatcher.singleton.registerTarget(getObjectName().getCanonicalName(), new
ClassProxyHack(this));
| + Dispatcher.singleton.registerTarget(getObjectName().getCanonicalName(), this);
Where the ClassProxyHack has:
public InvocationResponse _dynamicInvoke(Invocation invocation) throws Throwable
| {
| return container.dynamicInvoke(null, invocation);
| }
...and this is what gives me my hook to set the proper TCL.
From here I've got the hooks I need to resolve this.
S,
ALR
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4166758#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...