• Multiple ClassFileTransformers/Translators

    WRT: https://jira.jboss.org/jira/browse/JBSPRING-1 I've created custom JBoss5 LTW: http://anonsvn.jboss.org/repos/jbossas/projects/spring-int/trunk/weaving/src/main/java/org/jboss/instrument/classloading/JBoss5ClassLo...
    Profile Photo
    last modified by alesj
  • What's KernelControllerContext.install fromState argument?

    What does the fromState argument on KernelControllerContext.install actually mean? Deep down it's ignored. I would have expected doing kcc.install(DESCRIBED, INSTALLED) twice would result in an IllegalStateException.
    Profile Photo
    last modified by wolfc
  • MutableClassInfo?

    Looking at using ClassInfo in AOP http://www.jboss.com/index.html?module=bb&op=viewtopic&t=148135 http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4199716#4199716 We will initially go from usi...
    Profile Photo
    last modified by kabirkhan
  • Generated Classes not found if they do not match any of Base

    I don't think this is a problem for AOP since whenever we generate classes they will be using the package of one of the classes in the classloader used to generate the class, but I thought I'd point out my following f...
    Profile Photo
    last modified by kabirkhan
  • Dependency on XB DefaultSchemaResolver

    I found JBossXBDeployerHelper assumes DefaultSchemaResolver private static DefaultSchemaResolver resolver = (DefaultSchemaResolver)SingletonSchemaResolverFactory.getInstance().getSchemaBindingResolver(); This became...
    Profile Photo
    last modified by aloubyansky
  • Extending jboss-beans.xml schema?

    I don't remember what needs to be done to extend the accepted elements for a new bean metadatafactory like this application-policy element: <deployment xmlns="urn:jboss:bean-deployer:2.0"> <!-- profilese...
    Profile Photo
    last modified by starksm64
  • InterruptedException not being cleared?

    It looks like an InterruptedException may not be getting cleared. I was debugging an admin console issue and it timed out, presumably setting the interrupted state on a thread and now it keeps hanging with a class loa...
    Profile Photo
    last modified by starksm64
  • AbstractVFSParsingDeployer doesn't kick in upon server reboo

    I did a JBPMMetaDataDeployer that process *.par archives and prepares the meta data (output= JBPMDeploymentMetaData) for the actual JBPMDeployer: public class JBPMMetaDataDeployer extends AbstractVFSParsingDeployer...
    Profile Photo
    last modified by heiko.braun
  • Comprehensive deployer framework documentation

    I added an issue that addresses the documentation of the deployer framework https://jira.jboss.org/jira/browse/JBMICROCONT-415 Please vote on the issue if you care.
    Profile Photo
    last modified by thomas.diesler
  • Security services deployer for the MC

    I've made another deployer. The purpose of this deployer is to support the injection of security-related entities (Ciphers, SecureRandoms, MessageDigests etc). It lives in the sandbox here: http://anonsvn.jboss.org/r...
    Profile Photo
    last modified by dmlloyd
  • Locks on MainDeployerImpl

    It looks like I over did it with introducing write lock on MainDeployerImpl::process (which now creates deployment contexts). The deadlock can be seen here: - https://jira.jboss.org/jira/browse/JBAS-6529 - http://l...
    Profile Photo
    last modified by alesj
  • The deployers project is a mess

    A lot of the tests are failing when I use eclipse again. Including the EAR annotation tests which I think you've already fixed twice before? They work fine in Maven. This hints to me that you are doing things that ar...
    Profile Photo
    last modified by adrian.brock
  • Those terrible error messages

    One of the most off-putting things about JBossMC is the confusing, non-human error messages it produces when a deployment fails. Carlo's thread gave me the notion to try and fix this. Here's the patch to AbstractKerne...
    Profile Photo
    last modified by dmlloyd
  • JBAS-6518 - spaces in paths

    I've managed to create a testcase in jboss trunk that reproduces this problem. It's a hack, so I haven't ported it to JBoss5. While looking at the problem I also found: https://jira.jboss.org/jira/browse/JBVFS-89 I ...
    Profile Photo
    last modified by adrian.brock
  • Excessive inconsistency logging in jboss-cl

    Looks like we missed some use case of logging inconsistency only once: - http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4210990#4210990
    Profile Photo
    last modified by alesj
  • JBREFLECT-50, determining need for setAccessible bug

    I ran into a curious behavior I either never knew, or forgot regarding access permissions via reflection. In order for a method to be accessible via reflection without calling setAccessible on the method, both the met...
    Profile Photo
    last modified by starksm64
  • Redeploy is done wrong

    or VFS needs a re-deploy notion. WRT: - https://jira.jboss.org/jira/browse/JBAS-6504 What goes on and where does it go wrong? * some ProfileService part finds modified deployment * it returns list of Modifications ...
    Profile Photo
    last modified by alesj
  • Duplicate DeploymentContext registration

    I thought I had this one: - http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4209160#4209160 But now I'm sure I got it wrong. :-) I did a small test, with having -beans.xml as a sub-sub-deployment, a...
    Profile Photo
    last modified by alesj
  • How to reliably determine if BeanMetaData contains dependenc

    I need a way to reliably determine if a BeanMetaData contains dependencies. aop-mc-int tests in trunk for aspects with dependencies are failing due to my way of determining this no longer working there, and this in tu...
    Profile Photo
    last modified by kabirkhan
  • classloading dependencies

    I'm trying to deploy a .jar in AS 5. It contains a bean, let's call it fooBean, that links against class barClass. barClass is not in the .jar, it's in barModule. So at first I try <bean name="fooBean" class="fo...
    Profile Photo
    last modified by jhalliday