How many of xercesImpl jars is there in classpath?
Since I remember having some weird (perhaps even the same) problems when doing 
similar mc+aop in our mc+drools example due to multiple diff xercesImpl 
versions.

Had to exclude them:

  |       <dependency>
  |         <groupId>org.drools</groupId>
  |         <artifactId>drools-compiler</artifactId>
  |         <version>${version.jboss.drools}</version>
  |         <exclusions>
  |           <exclusion>
  |             <groupId>xml-apis</groupId>
  |             <artifactId>xml-apis</artifactId>
  |           </exclusion>
  |           <exclusion>
  |             <groupId>xerces</groupId>
  |             <artifactId>xercesImpl</artifactId>
  |           </exclusion>
  |         </exclusions>
  |       </dependency>
  | 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4094453#4094453

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4094453
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to