You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by "Martin Ahrer (JIRA)" <ji...@apache.org> on 2006/10/18 15:04:35 UTC

[jira] Created: (WSCOMMONS-112) Non-native attributes (extensions) of simpleType and complexType not added to metaInfoMap

Non-native attributes (extensions) of simpleType and complexType not added to metaInfoMap
-----------------------------------------------------------------------------------------

                 Key: WSCOMMONS-112
                 URL: http://issues.apache.org/jira/browse/WSCOMMONS-112
             Project: WS-Commons
          Issue Type: Bug
          Components: XmlSchema
            Reporter: Martin Ahrer


The SchemaBuilder.handleSimpleType and SchemaBuilder.handleComplexType methods do not properly call the processExtensibilityComponents method(). They add the attribute extensions of the schema element itself rather than the attribute extensions of the complex element and the simple element

SchemaBuilder.handleComplexType  should call 
processExtensibilityComponents(ct,complexEl); rather than  processExtensibilityComponents(ct,schemaEl);

SchemaBuilder.handleSimpleType should call 
processExtensibilityComponents(ct,simpleEl); rather than  processExtensibilityComponents(ct,schemaEl);

ok just figured out one more ...

SchemaBuilder.handleInclude should call 
processExtensibilityComponents(ct,includeEl); rather than  processExtensibilityComponents(ct,schemaEl);

looks like a copy paste problem:)

regards
 Martin


-- 
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

        

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: commons-dev-help@ws.apache.org


[jira] Commented: (WSCOMMONS-112) Non-native attributes (extensions) of simpleType and complexType not added to metaInfoMap

Posted by "Martin Ahrer (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/WSCOMMONS-112?page=comments#action_12444219 ] 
            
Martin Ahrer commented on WSCOMMONS-112:
----------------------------------------

dims,

I have created the svn diff and uploaded it as attachment!

Thanks
  Martin

> Non-native attributes (extensions) of simpleType and complexType not added to metaInfoMap
> -----------------------------------------------------------------------------------------
>
>                 Key: WSCOMMONS-112
>                 URL: http://issues.apache.org/jira/browse/WSCOMMONS-112
>             Project: WS-Commons
>          Issue Type: Bug
>          Components: XmlSchema
>            Reporter: Martin Ahrer
>         Attachments: SchemaBuilder.java.patch
>
>
> The SchemaBuilder.handleSimpleType and SchemaBuilder.handleComplexType methods do not properly call the processExtensibilityComponents method(). They add the attribute extensions of the schema element itself rather than the attribute extensions of the complex element and the simple element
> SchemaBuilder.handleComplexType  should call 
> processExtensibilityComponents(ct,complexEl); rather than  processExtensibilityComponents(ct,schemaEl);
> SchemaBuilder.handleSimpleType should call 
> processExtensibilityComponents(ct,simpleEl); rather than  processExtensibilityComponents(ct,schemaEl);
> ok just figured out one more ...
> SchemaBuilder.handleInclude should call 
> processExtensibilityComponents(ct,includeEl); rather than  processExtensibilityComponents(ct,schemaEl);
> looks like a copy paste problem:)
> regards
>  Martin

-- 
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

        

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: commons-dev-help@ws.apache.org


[jira] Resolved: (WSCOMMONS-112) Non-native attributes (extensions) of simpleType and complexType not added to metaInfoMap

Posted by "Davanum Srinivas (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/WSCOMMONS-112?page=all ]

Davanum Srinivas resolved WSCOMMONS-112.
----------------------------------------

    Resolution: Fixed

fixed in latest SVN - revision 467325. Please cross check and thanks for the patch.

-- dims

> Non-native attributes (extensions) of simpleType and complexType not added to metaInfoMap
> -----------------------------------------------------------------------------------------
>
>                 Key: WSCOMMONS-112
>                 URL: http://issues.apache.org/jira/browse/WSCOMMONS-112
>             Project: WS-Commons
>          Issue Type: Bug
>          Components: XmlSchema
>            Reporter: Martin Ahrer
>         Attachments: SchemaBuilder.java.patch
>
>
> The SchemaBuilder.handleSimpleType and SchemaBuilder.handleComplexType methods do not properly call the processExtensibilityComponents method(). They add the attribute extensions of the schema element itself rather than the attribute extensions of the complex element and the simple element
> SchemaBuilder.handleComplexType  should call 
> processExtensibilityComponents(ct,complexEl); rather than  processExtensibilityComponents(ct,schemaEl);
> SchemaBuilder.handleSimpleType should call 
> processExtensibilityComponents(ct,simpleEl); rather than  processExtensibilityComponents(ct,schemaEl);
> ok just figured out one more ...
> SchemaBuilder.handleInclude should call 
> processExtensibilityComponents(ct,includeEl); rather than  processExtensibilityComponents(ct,schemaEl);
> looks like a copy paste problem:)
> regards
>  Martin

-- 
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

        

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: commons-dev-help@ws.apache.org


[jira] Updated: (WSCOMMONS-112) Non-native attributes (extensions) of simpleType and complexType not added to metaInfoMap

Posted by "Martin Ahrer (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/WSCOMMONS-112?page=all ]

Martin Ahrer updated WSCOMMONS-112:
-----------------------------------

    Attachment: SchemaBuilder.java.patch

> Non-native attributes (extensions) of simpleType and complexType not added to metaInfoMap
> -----------------------------------------------------------------------------------------
>
>                 Key: WSCOMMONS-112
>                 URL: http://issues.apache.org/jira/browse/WSCOMMONS-112
>             Project: WS-Commons
>          Issue Type: Bug
>          Components: XmlSchema
>            Reporter: Martin Ahrer
>         Attachments: SchemaBuilder.java.patch
>
>
> The SchemaBuilder.handleSimpleType and SchemaBuilder.handleComplexType methods do not properly call the processExtensibilityComponents method(). They add the attribute extensions of the schema element itself rather than the attribute extensions of the complex element and the simple element
> SchemaBuilder.handleComplexType  should call 
> processExtensibilityComponents(ct,complexEl); rather than  processExtensibilityComponents(ct,schemaEl);
> SchemaBuilder.handleSimpleType should call 
> processExtensibilityComponents(ct,simpleEl); rather than  processExtensibilityComponents(ct,schemaEl);
> ok just figured out one more ...
> SchemaBuilder.handleInclude should call 
> processExtensibilityComponents(ct,includeEl); rather than  processExtensibilityComponents(ct,schemaEl);
> looks like a copy paste problem:)
> regards
>  Martin

-- 
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

        

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: commons-dev-help@ws.apache.org


[jira] Commented: (WSCOMMONS-112) Non-native attributes (extensions) of simpleType and complexType not added to metaInfoMap

Posted by "Davanum Srinivas (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/WSCOMMONS-112?page=comments#action_12443403 ] 
            
Davanum Srinivas commented on WSCOMMONS-112:
--------------------------------------------

martin,

can u please upload a "svn diff" against latest svn source?

thanks,
dims

> Non-native attributes (extensions) of simpleType and complexType not added to metaInfoMap
> -----------------------------------------------------------------------------------------
>
>                 Key: WSCOMMONS-112
>                 URL: http://issues.apache.org/jira/browse/WSCOMMONS-112
>             Project: WS-Commons
>          Issue Type: Bug
>          Components: XmlSchema
>            Reporter: Martin Ahrer
>
> The SchemaBuilder.handleSimpleType and SchemaBuilder.handleComplexType methods do not properly call the processExtensibilityComponents method(). They add the attribute extensions of the schema element itself rather than the attribute extensions of the complex element and the simple element
> SchemaBuilder.handleComplexType  should call 
> processExtensibilityComponents(ct,complexEl); rather than  processExtensibilityComponents(ct,schemaEl);
> SchemaBuilder.handleSimpleType should call 
> processExtensibilityComponents(ct,simpleEl); rather than  processExtensibilityComponents(ct,schemaEl);
> ok just figured out one more ...
> SchemaBuilder.handleInclude should call 
> processExtensibilityComponents(ct,includeEl); rather than  processExtensibilityComponents(ct,schemaEl);
> looks like a copy paste problem:)
> regards
>  Martin

-- 
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

        

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: commons-dev-help@ws.apache.org