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 "Andreas Veithen (JIRA)" <ji...@apache.org> on 2010/04/25 12:34:49 UTC

[jira] Created: (WSCOMMONS-535) StreamingOMSerializer drops "xml" prefixes

StreamingOMSerializer drops "xml" prefixes
------------------------------------------

                 Key: WSCOMMONS-535
                 URL: https://issues.apache.org/jira/browse/WSCOMMONS-535
             Project: WS-Commons
          Issue Type: Bug
          Components: AXIOM
            Reporter: Andreas Veithen
            Assignee: Andreas Veithen
             Fix For: Axiom 1.2.9


StreamingOMSerializer drops all "xml" prefixes. E.g. the document

<?xml version="1.0"?>
<root>
    <text xml:lang="en">Some text</text>
</root>

is transformed into

<?xml version='1.0' encoding='UTF-8'?>
<root>
    <text lang="en">Some text</text>
</root>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (WSCOMMONS-535) StreamingOMSerializer drops "xml" prefixes

Posted by "Andreas Veithen (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WSCOMMONS-535?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andreas Veithen resolved WSCOMMONS-535.
---------------------------------------

    Resolution: Fixed

Fixed the issue in StreamingOMSerializer as well as some additional issue that arise with attributes having an "xml" prefix.

> StreamingOMSerializer drops "xml" prefixes
> ------------------------------------------
>
>                 Key: WSCOMMONS-535
>                 URL: https://issues.apache.org/jira/browse/WSCOMMONS-535
>             Project: WS-Commons
>          Issue Type: Bug
>          Components: AXIOM
>            Reporter: Andreas Veithen
>            Assignee: Andreas Veithen
>             Fix For: Axiom 1.2.9
>
>
> StreamingOMSerializer drops all "xml" prefixes. E.g. the document
> <?xml version="1.0"?>
> <root>
>     <text xml:lang="en">Some text</text>
> </root>
> is transformed into
> <?xml version='1.0' encoding='UTF-8'?>
> <root>
>     <text lang="en">Some text</text>
> </root>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.