• AOP and MC integration tasks

    Hi Is there any additional tasks that need to be created in respect to the Microcontainer/AOP integration? If not we can close: http://jira.jboss.com/jira/browse/JBAOP-232Create JIRA issues for TODOs in the Microco...
    Profile Photo
    last modified by bgeorges
  • AOP ClassLoader/Scoping needs thoroughly revising

    There is a fundamentally bad assumption going on with AOP usage of classloading and scoping. The problem is exemplified by this code in ScopedClassLoaderDomain (but it is a more general issue that I will explain as I ...
    Profile Photo
    last modified by adrian.brock
  • Annotations for Typed Advices

    Hello everyone! One of the great features we are adding to JBoss AOP 2.0 are the typed advices (before/after/after-throwing/finally). Currently, only the configuration of those by xml is implemented: <bind pointc...
    Profile Photo
    last modified by flavia.rainone
  • Removing dependency on concurrent.jar

    Manik requested that I look into making AOP 2.0 independent of concurrent.jar. I've replaces all references to EDU.oswego classes with their java.util.concurrent counteparts. All works fine, apart from org.jboss.aop....
    Profile Photo
    last modified by kabirkhan
  • Hudson tests

    AOP 2.0 is now being built and tested on Hudson. We are currently only doing it with JDK 5 against AS 4.2.0 http://dev45.qa.atl.jboss.com:8585/hudson/job/jboss-aop-jbossas-4.2.0.GA/ but we are in the process of adding...
    Profile Photo
    last modified by kabirkhan
  • AOP on JBOSS_HOME/client

    AOP is being used by JBoss Messaging clients, however AOP is not available at /client. Shouldn't aop be added to $JBOSS_HOME/client. I believe EJB3 would also make use of AOP proxies on clients. This would make depe...
    Profile Photo
    created by clebert.suconic
  • JBoss Logging and JBoss AOP

    I'd like to integrate JBoss AOP with JBoss Logging at some stage, at least when deployed in jboss. The reason logging is not included is from before my time, so if somebody can tell me why integrating with JBoss Logg...
    Profile Photo
    last modified by kabirkhan
  • Separate AOP core and aspect library

    In AOP 1.5.x we are releasing jboss-aop and the jboss-aspect-library as part of the AOP releases. This is not ideal since jboss-aspect-library contains both the app-server integration (tied to AOP release) and the asp...
    Profile Photo
    created by kabirkhan
  • Woven class compatibility

    Regarding http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031144#4031144 I've added a test target to the aop 2.0.0 testsuite to ensure that code woven with the "ClassicInstrumentor" in JBoss AOP 1.5...
    Profile Photo
    last modified by kabirkhan
  • MethodInvocation.getArguments return value for 0 arguments

    Hi, I'm trying to debug this problem: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=104450&postdays=0&postorder=asc&start=10. The exception is thrown from this aspect: public Object h...
    Profile Photo
    last modified by sergeypk
  • AspectFactory and classloading

    I was wondering why GenericAspectFactory uses the thread context class loader by default to load aspect classes? public Class getClazz() { .... { clazz = Thread.currentThread().getContextClassLoader().loadClas...
    Profile Photo
    last modified by ovidiu.feodorov
  • Trimmed down AOP 1.5.x branch

    I've got rid of most of the modules from the AOP 1.5.x branch which were just noise anyway. If you now check out https://svn.jboss.org/repos/jbossas/branches/Branch_AOP_1_5/ from subversion, you will have a lot less p...
    Profile Photo
    created by kabirkhan
  • Closures, better aop support in jdk7?

    I viewed the closure talk Jason sent out a link to: http://video.google.com/videoplay?docid=4051253555018153503&q=engEDU The www.javac.info has several links to closure related stuff, but its not responding this ...
    Profile Photo
    last modified by starksm64
  • JBAOP-368, Need to correct the ProtectionDomain used to defi

    A problem I have run into while looking at running jboss5 under a security manager is that the interceptor class is not being created with a useful ProtectionDomain/CodeSource. It should be using the CodeSource of the...
    Profile Photo
    last modified by starksm64
  • JBAS-2100  AOP integration in JBoss5

    We need a release beyond the current aop snapshot incorporated into head. I'm using the current JBAS-2100 to track that. Is this doable over the next week?
    Profile Photo
    last modified by starksm64
  • Pointcut tests

    I've added a test for testing pointcuts in org.jboss.test.aop.pointcut.PointcutTester. I've made no attempt to include everything that should work right now, but just something to keep in mind if you a) Ever extend t...
    Profile Photo
    created by kabirkhan
  • Update to maven pom.xml

    I updated the maven build script (pom.xml) because I noticed a couple things weren't working (missing dependencies, some files not compiling). A couple things to note: the JRockit source files are skipped because they...
    Profile Photo
    last modified by pgier
  • Array interception needed for jboss cache

    I have commited an initial prototype of the array interception needed for POJO Cache. It is available in svn in a separate branch: $ svn co https://svn.jboss.org/repos/jbossas/projects/aop/branches/arrays/ jboss-ao...
    Profile Photo
    last modified by kabirkhan
  • JBoss AOP standalone build

    I have pulled out JBoss AOP from the as trunk build into its own repository location, and this is now included as a thirdparty library into both JBoss 5 and JBoss 4. To get at the sources for jboss aop you need to ch...
    Profile Photo
    last modified by kabirkhan
  • org.jboss.aop.Dispatcher error?

    As far as I can see this code in the org.jboss.aop.Dispatcher.invoke is a copy/paste error that should be using Proxy in place of ClassProxy: ... else if (target instanceof Proxy) { ClassProxy proxy = (ClassProx...
    Profile Photo
    last modified by starksm64