Hi,

Are there any planned dates for a new release?

I'm currently using 1.2.6 and I've got a problem that was partially
addressed in https://issues.apache.org/jira/browse/WSCOMMONS-300, and
then more fully addressed in revision 659096
"http://svn.apache.org/viewvc?view=rev&revision=659096"; (doesn't seem
to be a JIRA ticket for that change?). Processing text nodes in the
document causes a lot of IllegalArgumentExceptions to the thrown doing
reader.getProperty().

For now, I can work around this by explicitly setting the
isDataHandlerAwareField of StAXOMBuilder to Boolean.FALSE, but that
feels a little dirty.

            XMLStreamReader parser =
XMLInputFactory.newInstance().createXMLStreamReader(in);
            StAXOMBuilder builder = new StAXOMBuilder(parser) {
                {
                    this.isDataHandlerAware = Boolean.FALSE;
                }
            };

My own preference for that API would be to have a mutator method
rather than modifying a protected field.

Cheers,

James

Reply via email to