[
https://issues.apache.org/jira/browse/AXIOM-401?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13495664#comment-13495664
]
Hudson commented on AXIOM-401:
------------------------------
Integrated in ws-axiom-trunk #1267 (See
[https://builds.apache.org/job/ws-axiom-trunk/1267/])
Finalized AXIOM-401. (Revision 1408466)
Result = SUCCESS
veithen :
Files :
*
/webservices/commons/trunk/modules/axiom/modules/axiom-common-impl/src/main/java/org/apache/axiom/om/impl/common/factory/DOMXMLStreamReader.java
*
/webservices/commons/trunk/modules/axiom/modules/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/OMTestSuiteBuilder.java
*
/webservices/commons/trunk/modules/axiom/modules/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/builder/TestCreateOMBuilderFromDOMElement.java
> 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
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]