[ 
https://issues.apache.org/jira/browse/AXIOM-435?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13438239#comment-13438239
 ] 

Hudson commented on AXIOM-435:
------------------------------

Integrated in ws-axiom-trunk #1174 (See 
[https://builds.apache.org/job/ws-axiom-trunk/1174/])
    AXIOM-435: Correctly support entity references that have a replacement 
value containing markup. (Revision 1375212)
* AXIOM-435: Ensure that OMEntityReference#getReplacementText() returns a non 
null value if the builder was created from a SAXSource.
* General improvements of SAXSource support. (Revision 1375203)

     Result = SUCCESS
veithen : 
Files : 
* 
/webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/impl/builder/SAXOMBuilder.java
* 
/webservices/commons/trunk/modules/axiom/modules/axiom-testutils/src/main/resources/org/apache/axiom/testutils/conformance/entity-reference-with-markup.xml

veithen : 
Files : 
* 
/webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/impl/builder/SAXOMBuilder.java
* 
/webservices/commons/trunk/modules/axiom/modules/axiom-common-impl/src/main/java/org/apache/axiom/om/impl/common/factory/AbstractOMMetaFactory.java
* 
/webservices/commons/trunk/modules/axiom/modules/axiom-common-impl/src/main/java/org/apache/axiom/om/impl/common/factory/SAXOMXMLParserWrapper.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/container/BuilderFactory.java
* 
/webservices/commons/trunk/modules/axiom/modules/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/container/TestGetXMLStreamReader.java
* 
/webservices/commons/trunk/modules/axiom/modules/axiom-testutils/src/main/java/org/apache/axiom/testutils/stax/XMLStreamReaderComparator.java

                
> Consistently implement support for entity references
> ----------------------------------------------------
>
>                 Key: AXIOM-435
>                 URL: https://issues.apache.org/jira/browse/AXIOM-435
>             Project: Axiom
>          Issue Type: Improvement
>          Components: API
>    Affects Versions: 1.2.13
>            Reporter: Andreas Veithen
>            Assignee: Andreas Veithen
>            Priority: Minor
>             Fix For: 1.2.14
>
>
> Currently (unexpanded) entity references are represented as OMText instances 
> with type=ENTITY_REFERENCE_NODE. This is a bad choice:
> * An entity reference doesn't necessarily represent character data: the 
> expansion can e.g. produce elements. Representing it as an OMText is 
> therefore conceptually wrong.
> * There is lots of code that checks for OMText and then uses OMText#getText() 
> under the assumption that the return value represents character data. 
> However, for an entity reference, getText() would return the entity name.
> It should also be noted that the test coverage for entity references is 
> currently almost nonexistent. As a result, the code that handles entity 
> references is inconsistent. E.g. OMStAXWrapper/SwitchingWrapper contains the 
> following code:
>             if ((currentEvent == START_ELEMENT)
>                     || (currentEvent == END_ELEMENT)
>                     || (currentEvent == ENTITY_REFERENCE)) {
>                 return ((OMElement) lastNode).getLocalName();
>             } else {
>                 throw new IllegalStateException();
>             }
> This is obviously incorrect.

--
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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to