[Design of Security on JBoss] - Re: Security Injection in AS5
by sguilhen@redhat.com
Thanks Scott, the start/stop methods worked just fine.
I'm facing a problem with the security deployment now. I've written a test case to test the metadata factory and it is failing when the deployment annotations are processed.
Relevant code snippets:
1- ApplicationPolicyFactoryTestCase:
| public class ApplicationPolicyFactoryTestCase extends MicrocontainerTest
| {
|
| /**
| *
| * @param name
| */
| public ApplicationPolicyFactoryTestCase(String name)
| {
| super(name);
| }
|
| @Override
| protected void setUp() throws Exception
| {
| SingletonSchemaResolverFactory.getInstance().addJaxbSchema(
| "urn:jboss:security-beans:1.0", "org.jboss.security.microcontainer.beans.metadata.SecurityDeployment");
| super.setUp();
| }
| ....
| }
|
It calls the addJaxbSchema before deploying the test configuration file (later when I get this working I'll add the namespace directly in the SingletonSchemaResolverFactory).
2-ApplicationPolicyFactoryTestCase.xml
| ?xml version="1.0" encoding="UTF-8"?>
|
| <deployment xmlns="urn:jboss:bean-deployer:2.0">
|
| <application-policy xmlns="urn:jboss:security-beans:1.0" name="TestPolicy">
| <authentication>
| <login-module code="org.jboss.security.auth.spi.UsersRolesLoginModule" flag="required"/>
| </authentication>
| </application-policy>
| </deployment>
|
3- The SecurityDeployment (Similar to the AOPDeployment):
| @JBossXmlSchema(namespace = "urn:jboss:security-beans:1.0", elementFormDefault = XmlNsForm.QUALIFIED)
| @XmlRootElement(name = "policy")
| @XmlType(propOrder = {"annotations", "classLoader", "beanFactories", "create", "start", "stop", "destroy", "aliases"})
| public class SecurityDeployment extends AbstractKernelDeployment
| {
|
| private static final long serialVersionUID = 1L;
|
| @Override
| @XmlAnyElement
| @XmlElements({@XmlElement(name = "application-policy", type = ApplicationPolicyBeanMetaDataFactory.class)})
| public void setBeanFactories(List<BeanMetaDataFactory> beanFactories)
| {
| super.setBeanFactories(beanFactories);
| }
| }
|
When I try to run the ApplicationPolicyFactoryTestCase, the setup() method fails when deploying the ApplicationPolicyFactoryTestCase.xml with the following error:
| org.jboss.xb.binding.JBossXBException: Failed to parse source: file:/opt/workspace/Security-JBossSX/security-mc-int/target/test-classes/org/jboss/test/security/microcontainer/beans/ApplicationPolicyFactoryTestCase.xml@5,79
| at org.jboss.xb.binding.parser.sax.SaxJBossXBParser.parse(SaxJBossXBParser.java:177)
| at org.jboss.xb.binding.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:139)
| at org.jboss.kernel.plugins.deployment.xml.BasicXMLDeployer.deploy(BasicXMLDeployer.java:147)
| at org.jboss.test.kernel.junit.MicrocontainerTestDelegate.deploy(MicrocontainerTestDelegate.java:294)
| at org.jboss.test.kernel.junit.MicrocontainerTestDelegate.deploy(MicrocontainerTestDelegate.java:438)
| at org.jboss.test.kernel.junit.MicrocontainerTestDelegate.setUp(MicrocontainerTestDelegate.java:83)
| at org.jboss.test.AbstractTestSetup.setUp(AbstractTestSetup.java:63)
| at org.jboss.test.AbstractTestCaseWithSetup.setUp(AbstractTestCaseWithSetup.java:103)
| at org.jboss.test.kernel.junit.MicrocontainerTest.setUp(MicrocontainerTest.java:82)
| at org.jboss.test.security.microcontainer.beans.ApplicationPolicyBeansTestCase.setUp(ApplicationPolicyBeansTestCase.java:59)
| at junit.framework.TestCase.runBare(TestCase.java:125)
| at junit.framework.TestResult$1.protect(TestResult.java:106)
| at junit.framework.TestResult.runProtected(TestResult.java:124)
| at junit.framework.TestResult.run(TestResult.java:109)
| .....
| Caused by: java.lang.RuntimeException: The type of the attribute whenRequired must be simple or complex with a value adapter: org.jboss.xb.binding.sunday.unmarshalling.TypeBinding@19113f8[null]
| at org.jboss.beans.metadata.plugins.AbstractDependencyValueMetaData.whenRequiredState
| at org.jboss.beans.metadata.plugins.AbstractConstructorMetaData.factory
| at org.jboss.beans.metadata.plugins.AbstractBeanMetaData.constructor
| at org.jboss.beans.metadata.plugins.AbstractClassLoaderMetaData.classLoader
| at org.jboss.security.microcontainer.beans.metadata.SecurityDeployment.classLoader
| at org.jboss.security.microcontainer.beans.metadata.SecurityDeployment
|
This happens during the @XmlType annotation processing and I really don't know what I should do to avoid this problem. Any thoughts/ideas?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4148212#4148212
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4148212
16 years, 8 months
[Design of EJB 3.0] - Re: WS EJB invocation
by scott.stark@jboss.org
The name will still typically be set by the Ejb3Deployers/EjbDeployers, so one of their outputs needs to be used to order the ws deployer. The MergedJBossMetaDataDeployer.EJB_MERGED_ATTACHMENT_NAME name is an input into the ejb deployers and so cannot be used.
You can depend on the KernelDeployment.class output that both ejb deployers now produce for the mcbeans. The only potential problem with this is if the ws deployer itself was trying to produce metadata for kernel/bean deployments. Does it?
Alternatively, I guess each deployer could just add a boolean indicating its processed the deployment under a EJB_DEPLOYER_CONSTANTS.DEPLOYER_COMPLETE key. We should probably have a more natural way to depend on non-unique output from a prceeding deployer by simply depending on the deployer, but I'll add the DEPLOYER_COMPLETE if the KernelDeployment output will not work.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4148202#4148202
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4148202
16 years, 8 months
[Design of JBoss Build System] - Jboss5 build from the trunk not running on windows .
by vickyk
I have been able to successfully able to build Jboss5 from the trunk but it fails with the following error on windows
JAVA: C:\jdk\jdk1.5.0_01\bin\java
|
| JAVA_OPTS: -Dprogram.name=run.bat -server -Xms128m -Xmx512m -XX:MaxPermSize=25
| 6m -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=36000
| 00
|
| CLASSPATH: C:\Documents and Settings\Vicky.JBOSS-VICKY\workspace\jboss5trunk\b
| uild\output\jboss-5.0.0.CR1\bin\run.jar
|
| ===============================================================================
|
| 22:33:22,562 INFO [ServerImpl] Starting JBoss (Microcontainer)...
| 22:33:22,562 INFO [ServerImpl] Release ID: JBoss [Morpheus] 5.0.0.CR1 (build: S
| VNTag=JBoss_5_0_0_CR1 date=200805011558)
| 22:33:22,609 INFO [ServerImpl] Home Dir: C:\Documents and Settings\Vicky.JBOSS-
| VICKY\workspace\jboss5trunk\build\output\jboss-5.0.0.CR1
| 22:33:22,609 INFO [ServerImpl] Home URL: file:/C:/Documents and Settings/Vicky.
| JBOSS-VICKY/workspace/jboss5trunk/build/output/jboss-5.0.0.CR1/
| 22:33:22,609 INFO [ServerImpl] Library URL: file:/C:/Documents and Settings/Vic
| ky.JBOSS-VICKY/workspace/jboss5trunk/build/output/jboss-5.0.0.CR1/lib/
| 22:33:22,609 INFO [ServerImpl] Patch URL: null
| 22:33:22,609 INFO [ServerImpl] Server Name: default
| 22:33:22,609 INFO [ServerImpl] Server Home Dir: C:\Documents and Settings\Vicky
| .JBOSS-VICKY\workspace\jboss5trunk\build\output\jboss-5.0.0.CR1\server\default
| 22:33:22,609 INFO [ServerImpl] Server Home URL: file:/C:/Documents and Settings
| /Vicky.JBOSS-VICKY/workspace/jboss5trunk/build/output/jboss-5.0.0.CR1/server/def
| ault/
| 22:33:22,609 INFO [ServerImpl] Server Data Dir: C:\Documents and Settings\Vicky
| .JBOSS-VICKY\workspace\jboss5trunk\build\output\jboss-5.0.0.CR1\server\default\d
| ata
| 22:33:22,609 INFO [ServerImpl] Server Temp Dir: C:\Documents and Settings\Vicky
| .JBOSS-VICKY\workspace\jboss5trunk\build\output\jboss-5.0.0.CR1\server\default\t
| mp
| 22:33:22,609 INFO [ServerImpl] Server Config URL: file:/C:/Documents and Settin
| gs/Vicky.JBOSS-VICKY/workspace/jboss5trunk/build/output/jboss-5.0.0.CR1/server/d
| efault/conf/
| 22:33:22,609 INFO [ServerImpl] Server Library URL: file:/C:/Documents and Setti
| ngs/Vicky.JBOSS-VICKY/workspace/jboss5trunk/build/output/jboss-5.0.0.CR1/server/
| default/lib/
| 22:33:22,609 INFO [ServerImpl] Root Deployment Filename: jboss-service.xml
| 22:33:23,515 INFO [ServerImpl] Starting Microcontainer, bootstrapURL=file:/C:/D
| ocuments and Settings/Vicky.JBOSS-VICKY/workspace/jboss5trunk/build/output/jboss
| -5.0.0.CR1/server/default/conf/bootstrap-beans.xml
| 22:33:26,281 INFO [ProfileImpl] Using profile root:C:\Documents and Settings\Vi
| cky.JBOSS-VICKY\workspace\jboss5trunk\build\output\jboss-5.0.0.CR1\server\defaul
| t
| 22:33:26,890 INFO [ServerInfo] Java version: 1.5.0_01,Sun Microsystems Inc.
| 22:33:26,890 INFO [ServerInfo] Java VM: Java HotSpot(TM) Server VM 1.5.0_01-b08
| ,Sun Microsystems Inc.
| 22:33:26,890 INFO [ServerInfo] OS-System: Windows XP 5.1,x86
| 22:33:26,937 INFO [JMXKernel] Legacy JMX core initialized
| 22:33:32,625 ERROR [AbstractKernelController] Error installing to Instantiated:
| name=jboss:service=AttributePersistenceService state=Described mode=Manual requi
| redState=Configured
| org.jboss.deployment.DeploymentException: Unable to createMBean for jboss:servic
| e=AttributePersistenceService
| at org.jboss.deployment.DeploymentException.rethrowAsDeploymentException
| (DeploymentException.java:52)
| at org.jboss.system.ServiceCreator.install(ServiceCreator.java:141)
| at org.jboss.system.microcontainer.InstantiateAction.installAction(Insta
| ntiateAction.java:45)
| at org.jboss.system.microcontainer.InstantiateAction.installAction(Insta
| ntiateAction.java:37)
| at org.jboss.dependency.plugins.action.SimpleControllerContextAction.sim
| pleInstallAction(SimpleControllerContextAction.java:62)
| at org.jboss.dependency.plugins.action.AccessControllerContextAction.ins
| tall(AccessControllerContextAction.java:71)
| at org.jboss.dependency.plugins.AbstractControllerContextActions.install
| (AbstractControllerContextActions.java:51)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(Abstra
| ctControllerContext.java:348)
| at org.jboss.system.microcontainer.ServiceControllerContext.install(Serv
| iceControllerContext.java:255)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractContr
| oller.java:1394)
| at org.jboss.dependency.plugins.AbstractController.incrementState(Abstra
| ctController.java:786)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(Abstr
| actController.java:914)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(Abstr
| actController.java:836)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractContro
| ller.java:674)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractContro
| ller.java:456)
| at org.jboss.system.ServiceController.doChange(ServiceController.java:65
| 9)
| at org.jboss.system.ServiceController.install(ServiceController.java:272
| )
| at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.jav
| a:99)
| at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.jav
| a:46)
| at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.i
| nternalDeploy(AbstractSimpleRealDeployer.java:62)
| at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(
| AbstractRealDeployer.java:50)
| at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(Deployer
| Wrapper.java:174)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFi
| rst(DeployersImpl.java:970)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFi
| rst(DeployersImpl.java:991)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.install(Deployers
| Impl.java:911)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(Abstra
| ctControllerContext.java:348)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractContr
| oller.java:1394)
| at org.jboss.dependency.plugins.AbstractController.incrementState(Abstra
| ctController.java:786)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(Abstr
| actController.java:914)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(Abstr
| actController.java:836)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractContro
| ller.java:674)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractContro
| ller.java:456)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.process(Deployers
| Impl.java:594)
| at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeploye
| rImpl.java:541)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.loadPr
| ofile(ProfileServiceBootstrap.java:229)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(
| ProfileServiceBootstrap.java:137)
| at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:
| 409)
| at org.jboss.Main.boot(Main.java:209)
| at org.jboss.Main$1.run(Main.java:544)
| at java.lang.Thread.run(Thread.java:595)
| Caused by: org.jboss.mx.util.JBossNotCompliantMBeanException: Error parsing the
| XML file, from XMLMetaData:
| at org.jboss.mx.metadata.XMLMetaData.build(XMLMetaData.java:292)
| at org.jboss.mx.modelmbean.XMBean.<init>(XMBean.java:253)
| at org.jboss.mx.modelmbean.XMBean.<init>(XMBean.java:282)
| at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
|
| at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
| orAccessorImpl.java:39)
| at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
| onstructorAccessorImpl.java:27)
| at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
| at org.jboss.mx.server.MBeanServerImpl.instantiate(MBeanServerImpl.java:
| 1242)
| 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.installExternalXMBean(ServiceCreator.
| java:286)
| at org.jboss.system.ServiceCreator.install(ServiceCreator.java:122)
| ... 38 more
| Caused by: org.dom4j.DocumentException: Child not found Documents%20and%20Settin
| gs/Vicky.JBOSS-VICKY/workspace/jboss5trunk/build/output/jboss-5.0.0.CR1/server/d
| efault/conf/xmdesc/AttributePersistenceService-xmbean.xml for FileHandler@157361
| 46[path= context=file:/C:/ real=file:/C:/] Nested exception: Child not found Doc
| uments%20and%20Settings/Vicky.JBOSS-VICKY/workspace/jboss5trunk/build/output/jbo
| ss-5.0.0.CR1/server/default/conf/xmdesc/AttributePersistenceService-xmbean.xml f
| or FileHandler@15736146[path= context=file:/C:/ real=file:/C:/]
| at org.dom4j.io.SAXReader.read(SAXReader.java:484)
| at org.dom4j.io.SAXReader.read(SAXReader.java:291)
| at org.jboss.mx.metadata.XMLMetaData.build(XMLMetaData.java:255)
| ... 49 more
| 22:33:32,937 ERROR [AbstractKernelController] Error installing to Real: name=vfs
| file:/C:/Documents%20and%20Settings/Vicky.JBOSS-VICKY/workspace/jboss5trunk/buil
| d/output/jboss-5.0.0.CR1/server/default/conf/jboss-service.xml state=PreReal mod
| e=Manual requiredState=Real
| org.jboss.deployment.DeploymentException: Unable to createMBean for jboss:servic
| e=AttributePersistenceService
| at org.jboss.deployment.DeploymentException.rethrowAsDeploymentException
| (DeploymentException.java:52)
| at org.jboss.system.ServiceCreator.install(ServiceCreator.java:141)
| at org.jboss.system.microcontainer.InstantiateAction.installAction(Insta
| ntiateAction.java:45)
| at org.jboss.system.microcontainer.InstantiateAction.installAction(Insta
| ntiateAction.java:37)
| at org.jboss.dependency.plugins.action.SimpleControllerContextAction.sim
| pleInstallAction(SimpleControllerContextAction.java:62)
| at org.jboss.dependency.plugins.action.AccessControllerContextAction.ins
| tall(AccessControllerContextAction.java:71)
| at org.jboss.dependency.plugins.AbstractControllerContextActions.install
| (AbstractControllerContextActions.java:51)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(Abstra
| ctControllerContext.java:348)
| at org.jboss.system.microcontainer.ServiceControllerContext.install(Serv
| iceControllerContext.java:255)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractContr
| oller.java:1394)
| at org.jboss.dependency.plugins.AbstractController.incrementState(Abstra
| ctController.java:786)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(Abstr
| actController.java:914)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(Abstr
| actController.java:836)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractContro
| ller.java:674)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractContro
| ller.java:456)
| at org.jboss.system.ServiceController.doChange(ServiceController.java:65
| 9)
| at org.jboss.system.ServiceController.install(ServiceController.java:272
| )
| at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.jav
| a:99)
| at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.jav
| a:46)
| at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.i
| nternalDeploy(AbstractSimpleRealDeployer.java:62)
| at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(
| AbstractRealDeployer.java:50)
| at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(Deployer
| Wrapper.java:174)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFi
| rst(DeployersImpl.java:970)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFi
| rst(DeployersImpl.java:991)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.install(Deployers
| Impl.java:911)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(Abstra
| ctControllerContext.java:348)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractContr
| oller.java:1394)
| at org.jboss.dependency.plugins.AbstractController.incrementState(Abstra
| ctController.java:786)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(Abstr
| actController.java:914)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(Abstr
| actController.java:836)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractContro
| ller.java:674)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractContro
| ller.java:456)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.process(Deployers
| Impl.java:594)
| at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeploye
| rImpl.java:541)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.loadPr
| ofile(ProfileServiceBootstrap.java:229)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(
| ProfileServiceBootstrap.java:137)
| at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:
| 409)
| at org.jboss.Main.boot(Main.java:209)
| at org.jboss.Main$1.run(Main.java:544)
| at java.lang.Thread.run(Thread.java:595)
| Caused by: org.jboss.mx.util.JBossNotCompliantMBeanException: Error parsing the
| XML file, from XMLMetaData:
| at org.jboss.mx.metadata.XMLMetaData.build(XMLMetaData.java:292)
| at org.jboss.mx.modelmbean.XMBean.<init>(XMBean.java:253)
| at org.jboss.mx.modelmbean.XMBean.<init>(XMBean.java:282)
| at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
|
| at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
| orAccessorImpl.java:39)
| at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
| onstructorAccessorImpl.java:27)
| at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
| at org.jboss.mx.server.MBeanServerImpl.instantiate(MBeanServerImpl.java:
| 1242)
| 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.installExternalXMBean(ServiceCreator.
| java:286)
| at org.jboss.system.ServiceCreator.install(ServiceCreator.java:122)
| ... 38 more
| Caused by: org.dom4j.DocumentException: Child not found Documents%20and%20Settin
| gs/Vicky.JBOSS-VICKY/workspace/jboss5trunk/build/output/jboss-5.0.0.CR1/server/d
| efault/conf/xmdesc/AttributePersistenceService-xmbean.xml for FileHandler@157361
| 46[path= context=file:/C:/ real=file:/C:/] Nested exception: Child not found Doc
| uments%20and%20Settings/Vicky.JBOSS-VICKY/workspace/jboss5trunk/build/output/jbo
| ss-5.0.0.CR1/server/default/conf/xmdesc/AttributePersistenceService-xmbean.xml f
| or FileHandler@15736146[path= context=file:/C:/ real=file:/C:/]
| at org.dom4j.io.SAXReader.read(SAXReader.java:484)
| at org.dom4j.io.SAXReader.read(SAXReader.java:291)
| at org.jboss.mx.metadata.XMLMetaData.build(XMLMetaData.java:255)
| ... 49 more
| 22:33:33,359 ERROR [ProfileServiceBootstrap] Failed to load profile: Summary of
| incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS):
|
| *** CONTEXTS IN ERROR: Name -> Error
|
| vfsfile:/C:/Documents%20and%20Settings/Vicky.JBOSS-VICKY/workspace/jboss5trunk/b
| uild/output/jboss-5.0.0.CR1/server/default/conf/jboss-service.xml -> org.dom4j.D
| ocumentException: Child not found Documents%20and%20Settings/Vicky.JBOSS-VICKY/w
| orkspace/jboss5trunk/build/output/jboss-5.0.0.CR1/server/default/conf/xmdesc/Att
| ributePersistenceService-xmbean.xml for FileHandler@15736146[path= context=file:
| /C:/ real=file:/C:/] Nested exception: Child not found Documents%20and%20Setting
| s/Vicky.JBOSS-VICKY/workspace/jboss5trunk/build/output/jboss-5.0.0.CR1/server/de
| fault/conf/xmdesc/AttributePersistenceService-xmbean.xml for FileHandler@1573614
| 6[path= context=file:/C:/ real=file:/C:/]
|
|
| 22:33:33,390 INFO [ServerImpl] JBoss (Microcontainer) [5.0.0.CR1 (build: SVNTag
| =JBoss_5_0_0_CR1 date=200805011558)] Started in 10s:781ms
Is anyone else experiencing this ?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4148155#4148155
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4148155
16 years, 8 months