Hi all, I'm using the following code fragment to create a builder for a stream containing an XML input (inputBytes).
ByteArrayInputStream bais = new ByteArrayInputStream(inputBytes); StAXOMBuilder builder = new StAXOMBuilder(bais); I want to do attribute value normalization and entity reference resolution (requirement in Canonical XML spec). So can somebody please help me to understand these two concepts and to implement them with the use of Axiom. Is there any prerequisite that I should do before writing the above two code lines? Thanks in advance, Saliya
