fixed by ODE-591.
thanks for the catch
On Mon, Apr 20, 2009 at 2:19 PM, Alex Boisvert <bois...@intalio.com> wrote:
On Mon, Apr 20, 2009 at 12:23 PM, buddhika chamith
<cham...@gmail.com>wrote:
This code is vulnerable if a carriage return is present after the <name>
tag before <package> tag. AFAIK this happens because of the behaviour of
Axiom. Axiom creates an OMText node for the carriage return. So when
getNextOMSibling() is called instead of <package> element OMText is
selected. But since the OMText cannot be cast to OMElement a
ClassCastException occurs. This can be avoided by obtaining zipart
OMElement
with a call to getChild() or any related method which returns an
OMElement
reference. I can provide a patch for this if necessary.
Good catch! Yes, a patch would be much appreciated.