This content has been marked as final.
Show 3 replies
-
1. Re: JBAS-4193, xml validation, empty application.xml
aloubyansky Sep 17, 2008 8:56 AM (in response to aloubyansky)The test is org.jboss.test.util.test.SchedulerUnitTestCase::testExternalServiceJar()
-
2. Re: JBAS-4193, xml validation, empty application.xml
adrian.brock Sep 23, 2008 8:28 AM (in response to aloubyansky)Why don't you write it as:
<bean name="EARStructureDeployer" class="org.jboss.deployment.EARStructure"> <property name="comparatorClassName">org.jboss.system.deployers.LegacyDeploymentContextComparator</property> <!-- uncomment to disable xml validation property name="useValidation">false</property --> </bean> <!-- application.xml parsing deployer --> <bean name="AppParsingDeployer" class="org.jboss.deployment.AppParsingDeployer"> <property name="useValidation"><inject bean="EARStructureDeployer" property="useValidation"/></property> </bean>
-
3. Re: JBAS-4193, xml validation, empty application.xml
aloubyansky Sep 25, 2008 5:37 AM (in response to aloubyansky)Makes sense, committed. Thanks.