Is this just me?
by Scott Stark
After updating trunk, the security mbean creation in ejb2 is failing.
I'll fix it as it seems to be that the ejb2 deployer code has not been
updated, but wanted to see if if I'm missing something.
Caused by: java.lang.NoSuchMethodException:
org.jboss.deployment.security.EjbPolicyConfigurationFacade.<init>(java.lang.String,
org.jboss.metadata.ejb.jboss.JBossMetaData)
at java.lang.Class.getConstructor0(Class.java:2678)
at java.lang.Class.getConstructor(Class.java:1629)
at
…
[View More]org.jboss.mx.server.MBeanServerImpl.instantiate(MBeanServerImpl.java:1241)
at
org.jboss.mx.server.MBeanServerImpl.instantiate(MBeanServerImpl.java:286)
at
org.jboss.mx.server.MBeanServerImpl.createMBean(MBeanServerImpl.java:344)
at
org.jboss.system.ServiceCreator.installPlainMBean(ServiceCreator.java:197)
at org.jboss.system.ServiceCreator.install(ServiceCreator.java:115)
... 85 more
[View Less]
16 years, 11 months
Adding a trunk/deployers project
by Scott Stark
I want to create a deployers project in trunk and move that work with
multiple metadata types like the MappedReferenceMetaDataResolverDeployer
rather than expanding the dependencies the trunk/server.
16 years, 11 months
org.jboss:jboss-test:1.0.6
by Andrew Lee Rubinger
I need to do some administrative maintenance on changes made to the
JBoss Test project. :)
A couple of months ago I'd done the following:
* Incremented to 1.0.6-SNAPSHOT
* Broke out the "Server Manager" Component into
repos/jbossas/projects/server-manager
(org.jboss.jbossas:jboss-as-server-manager:0.1.0-SNAPSHOT)
* Added support to jboss-test for definition of server:config in N Ant
files (was previously just allowed in 1).
So time for some cleanup:
* Create "JBoss Test" Project in JIRA …
[View More](Unless it's listed under
something else and I can't find it?)
* Create "JBossAS Server Manager" Project in JIRA
* Set proper groupId, artifactId for jboss-test.
"org.jboss.test:jboss-test"?
* Approve current groupId/artifactId for Server Manager. Thoughts on
the current one shown above?
* Track these changes in JIRA so they're included in the release notes
(I'll take care of this once the projects are created).
Dimitris/Ryan/others, please review and advise.
S,
ALR
--
Andrew Lee Rubinger
Sr. Software Engineer
JBoss EJB3
JBoss, a division of Red Hat, Inc.
http://labs.jboss.com/jbossejb3/
http://exitcondition.alrubinger.com
[View Less]
16 years, 11 months
Removing build-thirdparty.xml
by Paul Gier
Since the mavenized version of build-thirdparty seems to be working fine now,
I'd like to remove the old build-thirdparty.xml. If no one has any objections
I'll plan to remove this file tomorrow.
16 years, 11 months
Update of MC in JBoss5
by Adrian Brock
The MC has been updated to latest betas.
Besides fixing the war redeploy classloading bug:
http://jira.jboss.com/jira/browse/JBAS-5368
This release also includes work by Kabir so
you can deploy most aop config using a -beans.xml
with additional features like
dependency injection onto advices, etc.
Kabir's work required an upgrade to JBossXB 2.0.0.CR8
--
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
Adrian Brock
Chief Scientist
JBoss, a division of Red Hat
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
16 years, 11 months
org.jboss.ejb3.iiop.* classes moved from ejb3-core into a jboss-ejb3-iiop.jar included in the ejb3.deployer
by Scott Stark
Depending on your ejb3-core snapshot version, you could be missing the
org.jboss.ejb3.iiop.* classes which were moved into the jbossas/ejb3
project, but not included in a build artifact. These are now in the
jboss-ejb3-iiop.jar included in the ejb3.deployer
commit -m "Put org.jboss.ejb3.iiop.* classes moved from ejb3-core into a
jboss-ejb3-iiop.jar included in the ejb3.deployer"
/Users/svn/JBossHead/jboss-head/ejb3/build.xml
Sending /Users/svn/JBossHead/jboss-head/ejb3/build.xml
…
[View More] Transmitting file data ...
Committed revision 71909.
valkyrie:build starksm$ ls
output/jboss-5.0.0.CR1/server/all/deployers/ejb3.deployer/
META-INF jboss-ejb3-deployer.jar jboss-ejb3-iiop.jar
[View Less]
16 years, 11 months
AS trunk Broken
by Andrew Lee Rubinger
Erring out:
Project ID: org.jboss.jbossas:jboss-as-bootstrap
POM Location:
/home/alrubinger/business/jboss/wc/jbossas/trunk/bootstrap/pom.xml
Validation Messages:
[0] 'dependencies.dependency.version' is missing for
jboss:jboss-common-logging-spi
Reason: Failed to validate POM for project
org.jboss.jbossas:jboss-as-bootstrap at
/home/alrubinger/business/jboss/wc/jbossas/trunk/bootstrap/pom.xml
Possibly related to:
http://fisheye.jboss.org/browse/JBossAS/trunk/thirdparty/pom.xml?…
[View More]r1=71700...
?
S,
ALR
[View Less]
16 years, 11 months
Re: [jboss-cvs] JBossAS SVN: r71836 - projects/jboss-deployers/trunk/deployers-vfs/src/main/org/jboss/deployers/vfs/deployer/kernel.
by Adrian Brock
We want to be trying reduce the noise in the logging not increasing
it. :-)
This is just duplicate logging see AbstractDeploymentContext:
public void addComponent(DeploymentContext component)
{
if (component == null)
throw new IllegalArgumentException("Null component");
deployed();
components.add(component);
log.debug("Added component " + component.getName() + " to " +
getName());
}
On Wed, 2008-04-09 at 09:19 -0400, jboss-cvs-commits(a)lists.jboss.org
wrote:
> Author: …
[View More]scott.stark(a)jboss.org
> Date: 2008-04-09 09:19:41 -0400 (Wed, 09 Apr 2008)
> New Revision: 71836
>
> Modified:
> projects/jboss-deployers/trunk/deployers-vfs/src/main/org/jboss/deployers/vfs/deployer/kernel/KernelDeploymentDeployer.java
> Log:
> Log the addition of bean components
>
> Modified: projects/jboss-deployers/trunk/deployers-vfs/src/main/org/jboss/deployers/vfs/deployer/kernel/KernelDeploymentDeployer.java
> ===================================================================
> --- projects/jboss-deployers/trunk/deployers-vfs/src/main/org/jboss/deployers/vfs/deployer/kernel/KernelDeploymentDeployer.java 2008-04-09 12:57:52 UTC (rev 71835)
> +++ projects/jboss-deployers/trunk/deployers-vfs/src/main/org/jboss/deployers/vfs/deployer/kernel/KernelDeploymentDeployer.java 2008-04-09 13:19:41 UTC (rev 71836)
> @@ -29,9 +29,11 @@
> import org.jboss.deployers.spi.deployer.helpers.DeploymentVisitor;
> import org.jboss.deployers.structure.spi.DeploymentUnit;
> import org.jboss.kernel.spi.deployment.KernelDeployment;
> +import org.jboss.logging.Logger;
>
> public class KernelDeploymentDeployer extends AbstractComponentDeployer<KernelDeployment, BeanMetaData>
> {
> + private static Logger log = Logger.getLogger(KernelDeploymentDeployer.class);
> /**
> * Create a new KernelDeploymentDeployer.
> */
> @@ -45,6 +47,7 @@
> {
> DeploymentUnit component = unit.addComponent(bean.getName());
> component.addAttachment(BeanMetaData.class.getName(), bean);
> + log.debug("addBeanComponent, unit="+unit.getSimpleName()+", bean="+bean.getName());
> }
>
> protected static void removeBeanComponent(DeploymentUnit unit, BeanMetaData bean)
>
> _______________________________________________
> jboss-cvs-commits mailing list
> jboss-cvs-commits(a)lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/jboss-cvs-commits
--
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
Adrian Brock
Chief Scientist
JBoss, a division of Red Hat
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
[View Less]
16 years, 11 months