[EMAIL PROTECTED] writes: > It works fine for my 'normal' build file. But with maven's build file I'm > getting > > loader constraints violated when linking org/xml/sax/ContentHandler class > when parsing the XML doc :(
I've seen this problem while using Catalina before. You may have more than one version of ContentHandler (or a supporting class) in your classpath which are incompatible with one another. Try this: jar tvf xmlSuspect1.jar >> classes.list jar tvf xmlSuspect2.jar >> classes.list grep ContentHandler classes.list In my situation, the sizes of the two interfaces varied _drastically_, to the point where the loader constraints violation was thrown. - Dan -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
