• Skipping metadata

    Some specifications in EE are a bit unusal, in the sense that some metadata cannot be processed at deployment time. One example: the implicit TLDs for JSP, which actually use different validation rules compared to re...
    Profile Photo
    last modified by rmaucher
  • kernel unit test failures

    Is anyone else seeing this unit test failure on kernel/trunk? Failed tests: testLazy(org.jboss.test.kernel.lazy.test.JDKLazyInstantiationTestCase) testOnDemand(org.jboss.test.kernel.lazy.test.JDKLazyInstantiationT...
    Profile Photo
    last modified by smarlow
  • Deploying ValidatorFactory

    In EE6 ValidatorFactory and Validator are services available to: - other services like JCA, JPA, JSF 2 (typically available before these) - the user application via JNDI and @Resource injection What's the way to ge...
    Profile Photo
    last modified by epbernard
  • Exploding jar libraries in deployments

    Having an archived war file in AS-5.1.0 (Branch_5_x and trunk) which contains jar files in the WEB-INF/lib folder of the war leads to these jars being exploded to tmp folder too. Any specific reason why we are explodi...
    Profile Photo
    last modified by jaikiran
  • Servlet 3.0 annotation processing requirements

    Servlet 3.0 defines new annotations to declare and map servlet, filters, etc. Nothing very unusual there, the annotated classes have to be found and that's it. However, there are also some more exotic requirements. T...
    Profile Photo
    last modified by rmaucher
  • Binding the CDI BeanManager into JNDI

    The CDI spec requires us to make the BeanManager available in JNDI at java:comp/BeanManager. I understand java:comp/ has special meaning, so I'm wondering how best to bind the BeanManager there? Furthermore, the Bea...
    Profile Photo
    last modified by pmuir
  • VFSClassLoaderPolicy backed jboss-cl performance issue

    While debugging through performance and boot time issues, we have been seeing that the BaseClassLoader.loadClass() which is backed by a VFSClassLoaderPolicy is consistently expensive. A call to BaseClassloader.loadCla...
    Profile Photo
    last modified by jaikiran
  • Getting the whole cause stack of the deployment exception

    The current DeployersImpl stores only the root cause of an exception thrown during deployment in the IncompleteDeploymentException - it would be more useful if the entire exception (as orignally thrown, not including ...
    Profile Photo
    last modified by pmuir
  • profile service overview?

    I'm working on making JBossTS integrate more cleanly with JBossAS. As a first step I'm shifting the configuration from a TS specific style of xml file to a set of beans which can be wired up by MC through deploy/tran...
    Profile Photo
    last modified by jhalliday
  • AS-5 Files to watch for application redeployment

    Background: http://lists.jboss.org/pipermail/jboss-development/2009-June/014478.html and other threads where AS-5 re-deployments have been discussed As discussed in the mailing list, unlike AS-4.x, in AS-5, *by defau...
    Profile Photo
    last modified by jaikiran
  • Java EE inter-module accessibility for Web Beans

    JSR-299 requires that [3]: Beans packaged in a certain Java EE module or library are available for injection, lookup and EL resolution to classes and JSP/JSF pages packaged in some other Java EE module or library if...
    Profile Photo
    last modified by pmuir
  • Should Touching / changing timestamp of exploded folder rede

    Currently touching descriptor files is the best way to redeploy an exploded deployment. Some deployment types do not require any descriptors, so there's no clear way to redeploy that deployment without removing it and...
    Profile Photo
    last modified by rob.stryker
  • ProfileService Server.getMetadata() - immutable OK?

    Probably this one's for Scott/Emanuel: http://anonsvn.jboss.org/repos/jbossas/projects/bootstrap/trunk/spi-as/src/main/java/org/jboss/bootstrap/spi/as/server/JBossASBasedServer.java: /** * Get the optional server ...
    Profile Photo
    last modified by alrubinger
  • JBAS-7032 or ClassLoader::getResources

    Moving this discussion to the forum. "jaikiran" wrote: I could reproduce this issue: 1) Deploy an non-scoped/non-isolated Seam Ear application in 5.1.0 AS 2) Start the server which has the admin console 3) Access ...
    Profile Photo
    last modified by alesj
  • Where should unit tests for deployers-spi go?

    I am working on https://jira.jboss.org/jira/browse/JBDEPLOY-193 to provide a new deployer. I don't see any unit tests currently in jboss-deployers-spi project. Where should these tests go? And are the current deployer...
    Profile Photo
    last modified by jaikiran
  • Location of Service Binding Manager bindings.xml file

    I may miss something very obvious here: configurations are selected on the command line with -c and the selected configuration would also select the port mappings from the service binding managers bindings.xml file. ...
    Profile Photo
    last modified by pilhuhn
  • relative class-path entry resolution

    There seem to be some issues resolving relative Class-Path entries outside of a deployment. Basically the problem is that the resolution of the name is just based on the top-level deployment unit. Which means that the...
    Profile Photo
    last modified by emuckenhuber
  • Various performance issues in core projects

    While working on EJBTHREE-1800, we found that most of the issues were either related to AOP or MC. So i created a simple plain MC app (no EJBs in picture) with 101 MC beans and each MC bean having 100 methods each. Li...
    Profile Photo
    last modified by jaikiran
  • Default VFS caching locations

    This is related to the VFS caching configuration that was added to avoid the disk consumption of tmp files, issue. The issue is fixed, however recently one user brought this topic up http://www.jboss.org/index.html?mo...
    Profile Photo
    last modified by jaikiran
  • MDR AnnotationCreator/AnnotationProxy leads to proxy leakage

    The current code in AnnotationCreator and AnnotationProxy reuse the classloader that defines an annotation to create the new proxy in. This is bad when the annotation exists in a classloader that stays around for a lo...
    Profile Photo
    last modified by jason.greene