You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by "David Jencks (JIRA)" <de...@geronimo.apache.org> on 2005/08/28 18:19:04 UTC

[jira] Created: (GERONIMO-937) errors in openejb-jar schema

errors in openejb-jar schema
----------------------------

         Key: GERONIMO-937
         URL: http://issues.apache.org/jira/browse/GERONIMO-937
     Project: Geronimo
        Type: Bug
  Components: OpenEJB  
    Versions: 1.0-M5    
 Reporter: David Jencks
 Assigned to: David Jencks 
     Fix For: 1.0-M5


I think there are errors in the openejb-jar schema:

            <xs:element name="ejb-ql-compiler-factory" minOccurs="0"/>
            <xs:element name="db-syntax-factory" minOccurs="0"/>
            <xs:element name="enforce-foreign-key-constraints" minOccurs="0"/>

This means that each of those elements has "any" content.  I don't think that is what is intended.  I think the first two are supposed to be strings and the third is supposed to be empty.

I'm going to change this to

            <xs:element name="ejb-ql-compiler-factory" type="xs:string" minOccurs="0"/>
            <xs:element name="db-syntax-factory" type="xs:string" minOccurs="0"/>
            <xs:element name="enforce-foreign-key-constraints" type="openejb:emptyType" minOccurs="0"/>

where

<xs:complexType name="emptyType"/>

If this is not the intent of these elements please speak up.


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


[jira] Closed: (GERONIMO-937) errors in openejb-jar schema

Posted by "David Jencks (JIRA)" <de...@geronimo.apache.org>.
     [ http://issues.apache.org/jira/browse/GERONIMO-937?page=all ]
     
David Jencks closed GERONIMO-937:
---------------------------------

    Resolution: Fixed

No one complained

> errors in openejb-jar schema
> ----------------------------
>
>          Key: GERONIMO-937
>          URL: http://issues.apache.org/jira/browse/GERONIMO-937
>      Project: Geronimo
>         Type: Bug
>   Components: OpenEJB
>     Versions: 1.0-M5
>     Reporter: David Jencks
>     Assignee: David Jencks
>      Fix For: 1.0-M5

>
> I think there are errors in the openejb-jar schema:
>             <xs:element name="ejb-ql-compiler-factory" minOccurs="0"/>
>             <xs:element name="db-syntax-factory" minOccurs="0"/>
>             <xs:element name="enforce-foreign-key-constraints" minOccurs="0"/>
> This means that each of those elements has "any" content.  I don't think that is what is intended.  I think the first two are supposed to be strings and the third is supposed to be empty.
> I'm going to change this to
>             <xs:element name="ejb-ql-compiler-factory" type="xs:string" minOccurs="0"/>
>             <xs:element name="db-syntax-factory" type="xs:string" minOccurs="0"/>
>             <xs:element name="enforce-foreign-key-constraints" type="openejb:emptyType" minOccurs="0"/>
> where
> <xs:complexType name="emptyType"/>
> If this is not the intent of these elements please speak up.

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