-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Saliya Ekanayake wrote: > 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).
Entity reference resolution is done by the underlying parser itself. So u do not need to do anything for that. If you wanna know what entity references are, some of the examples are "<", ">", "&" etc., You can not simply include those char as texts within an xml. In simple terms you need to escape them. So you replace "<" with "<" etc. Better google for them if u need more info. But I am not sure whether XMLStreamWriter does attribute value normalization. There is one way you can know it for sure ;) Writer some code either using pure StAX api or using Axiom to serialize some normalizable attribute values. HTH. Chinthaka -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFGmrscjON2uBzUhh8RAiNsAJ0eS/gfYc++ZBJwR9WaV68micya+QCghxyC Vfml4wvCq9/Mgoyfq9PMBIw= =5Va5 -----END PGP SIGNATURE----- --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
