https://issues.apache.org/bugzilla/show_bug.cgi?id=50678
--- Comment #3 from Stefan Bodewig <[email protected]> 2011-01-30 02:17:22 EST --- The JDOM task is not developed by the Ant developers so we can only guess. You used to get Xerces as your default SAX parser factory while you now have the JDK's parser factory as a default. If your task (I assume you've written it yourself) really only works when Xerces is used you have to make sure it either explicitly asks for it or Xerces will be used by the JDK. The former can be done by using SAXParserFactory#newInstance with two argiments and the later by using the endorsed standards override mechanism of the JDK. This really is more a user mailing list question rather than a blocking Ant bug, BTW. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug.
