You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ws.apache.org by "Andreas Veithen (JIRA)" <ji...@apache.org> on 2012/07/14 19:42:35 UTC

[jira] [Updated] (AXIOM-401) Creating a builder from a DOMSource only works with Woodstox

     [ https://issues.apache.org/jira/browse/AXIOM-401?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andreas Veithen updated AXIOM-401:
----------------------------------

    Fix Version/s: 1.2.14
         Assignee: Andreas Veithen
    
> Creating a builder from a DOMSource only works with Woodstox
> ------------------------------------------------------------
>
>                 Key: AXIOM-401
>                 URL: https://issues.apache.org/jira/browse/AXIOM-401
>             Project: Axiom
>          Issue Type: Bug
>          Components: DOOM, LLOM
>    Affects Versions: 1.2.12
>            Reporter: Andreas Veithen
>            Assignee: Andreas Veithen
>            Priority: Minor
>             Fix For: 1.2.14
>
>
> Since Axiom 1.2.12, OMXMLBuilderFactory supports creating a builder from a javax.xml.transform.Source object. This works well for DOMSource objects, provided that Woodstox is used as StAX implementation. This can be demonstrated by the following code:
> Document document = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument();
> document.appendChild(document.createElementNS(null, "root"));
> OMDocument omDocument = OMXMLBuilderFactory.createOMBuilder(new DOMSource(document)).getDocument();
> omDocument.serialize(System.out);
> However, executing the same code using the StAX implementation included in Oracle's Java 1.6 runtime environment fails with the following error:
> Exception in thread "main" java.lang.UnsupportedOperationException: Cannot create XMLStreamReader or XMLEventReader from a javax.xml.transform.dom.DOMSource
>   at com.sun.xml.internal.stream.XMLInputFactoryImpl.jaxpSourcetoXMLInputSource(XMLInputFactoryImpl.java:302)
>   at com.sun.xml.internal.stream.XMLInputFactoryImpl.createXMLStreamReader(XMLInputFactoryImpl.java:145)
>   at org.apache.axiom.util.stax.wrapper.XMLInputFactoryWrapper.createXMLStreamReader(XMLInputFactoryWrapper.java:107)
>   at org.apache.axiom.util.stax.wrapper.WrappingXMLInputFactory.createXMLStreamReader(WrappingXMLInputFactory.java:128)
>   at org.apache.axiom.util.stax.wrapper.XMLInputFactoryWrapper.createXMLStreamReader(XMLInputFactoryWrapper.java:107)
>   at org.apache.axiom.om.impl.common.factory.AbstractOMMetaFactory.createOMBuilder(AbstractOMMetaFactory.java:104)
>   at org.apache.axiom.om.OMXMLBuilderFactory.createOMBuilder(OMXMLBuilderFactory.java:292)
>   at Test.main(Test.java:13)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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