[jboss-jira] [JBoss JIRA] Updated: (JBMICROCONT-446) bean-deployer xsds don't contain web references

Wolfgang Knauf (JIRA) jira-events at lists.jboss.org
Sun Jun 21 13:29:56 EDT 2009


     [ https://jira.jboss.org/jira/browse/JBMICROCONT-446?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Wolfgang Knauf updated JBMICROCONT-446:
---------------------------------------

    Description: 
bean-deployer_2_0.xsd:

   <xsd:redefine schemaLocation="jboss-beans-common_2_0.xsd">

=>should point. 
   <xsd:redefine schemaLocation="http://www.jboss.org/j2ee/schema/jboss-beans-common_2_0.xsd">

The comment for a sample instance should also contain a schema location attribute:
         <deployment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xmlns="urn:jboss:bean-deployer:2.0"
            xsi:schemaLocation="urn:jboss:bean-deployer:2.0 http://www.jboss.org/j2ee/schema/bean-deployer_2_0.xsd">

==================
bean-deployer_1_0.xsd:

The comment for a sample instance should point to the web schema location:
         <deployment
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:schemaLocation="urn:jboss:bean-deployer http://www.jboss.org/j2ee/schema/bean-deployer_1_0.xsd"
            xmlns="urn:jboss:bean-deployer">

=================
policy_1_0.xsd:
   <xsd:import namespace="urn:jboss:bean-deployer:2.0"/>
should be:
   <xsd:import namespace="urn:jboss:bean-deployer:2.0" schemaLocation="http://www.jboss.org/j2ee/schema/bean-deployer_1_0.xsd"/>

=================
bean-deployer_2_0.xsd raises validation errors in Eclipse:
-rcase-RecurseLax.2: There is not a complete functional mapping between the particles.	
-src-redefine.6.2.2: Group 'valueGroup' does not properly restrict the group it redefines; constraint violated:  'rcase-RecurseLax.2'.
According to the forum (http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4187426 ), this might also be a bug of the validator, but I don't have enough xsd knowledge to create a Xerces bugreport.

  was:
bean-deployer_2_0.xsd:

   <xsd:redefine schemaLocation="jboss-beans-common_2_0.xsd">

=>should point. 
   <xsd:redefine schemaLocation="http://www.jboss.org/j2ee/schema/jboss-beans-common_2_0.xsd">

The comment for a sample instance should also contain a schema location attribute:
         <deployment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xmlns="urn:jboss:bean-deployer:2.0"
            xsi:schemaLocation="urn:jboss:bean-deployer:2.0 http://www.jboss.org/j2ee/schema/bean-deployer_2_0.xsd">

==================
bean-deployer_1_0.xsd:

The comment for a sample instance should point to the web schema location:
         <deployment
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:schemaLocation="urn:jboss:bean-deployer http://www.jboss.org/j2ee/schema/bean-deployer_1_0.xsd"
            xmlns="urn:jboss:bean-deployer">

=================
policy_1_0.xsd:
   <xsd:import namespace="urn:jboss:bean-deployer:2.0"/>
should be:
   <xsd:import namespace="urn:jboss:bean-deployer:2.0" schemaLocation="http://www.jboss.org/j2ee/schema/bean-deployer_1_0.xsd"/>

=================
bean-deployer_2_0.xsd raises validation errors in Eclipse:
-rcase-RecurseLax.2: There is not a complete functional mapping between the particles.	
-src-redefine.6.2.2: Group 'valueGroup' does not properly restrict the group it redefines; constraint violated:  'rcase-RecurseLax.2'.
According to the forum (http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4187426), this might also be a bug of the validator, but I don't have enough xsd knowledge to create a Xerces bugreport.



> bean-deployer xsds don't contain web references
> -----------------------------------------------
>
>                 Key: JBMICROCONT-446
>                 URL: https://jira.jboss.org/jira/browse/JBMICROCONT-446
>             Project: JBoss Microcontainer
>          Issue Type: Bug
>            Reporter: Wolfgang Knauf
>
> bean-deployer_2_0.xsd:
>    <xsd:redefine schemaLocation="jboss-beans-common_2_0.xsd">
> =>should point. 
>    <xsd:redefine schemaLocation="http://www.jboss.org/j2ee/schema/jboss-beans-common_2_0.xsd">
> The comment for a sample instance should also contain a schema location attribute:
>          <deployment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>             xmlns="urn:jboss:bean-deployer:2.0"
>             xsi:schemaLocation="urn:jboss:bean-deployer:2.0 http://www.jboss.org/j2ee/schema/bean-deployer_2_0.xsd">
> ==================
> bean-deployer_1_0.xsd:
> The comment for a sample instance should point to the web schema location:
>          <deployment
>             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>             xsi:schemaLocation="urn:jboss:bean-deployer http://www.jboss.org/j2ee/schema/bean-deployer_1_0.xsd"
>             xmlns="urn:jboss:bean-deployer">
> =================
> policy_1_0.xsd:
>    <xsd:import namespace="urn:jboss:bean-deployer:2.0"/>
> should be:
>    <xsd:import namespace="urn:jboss:bean-deployer:2.0" schemaLocation="http://www.jboss.org/j2ee/schema/bean-deployer_1_0.xsd"/>
> =================
> bean-deployer_2_0.xsd raises validation errors in Eclipse:
> -rcase-RecurseLax.2: There is not a complete functional mapping between the particles.	
> -src-redefine.6.2.2: Group 'valueGroup' does not properly restrict the group it redefines; constraint violated:  'rcase-RecurseLax.2'.
> According to the forum (http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4187426 ), this might also be a bug of the validator, but I don't have enough xsd knowledge to create a Xerces bugreport.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the jboss-jira mailing list