How can I import other XML parsers into VAJ without getting errors because of conflicts with the "IBM XML Parser" project?
Created May 7, 2012
Eric Rizzo The problem is that the Project "IBM XML Parser" contains some non-IBM packages
(org.xml.* and org.w3c.*) These should be organized into separate Projects since they
are common to all XML libraries. Here's what I've done to organize my XML related packages and manage using
different XML parsers at different times: I have all of the following Projects
which I can load or remove from my workspace independently as necessary:
- XML Base
- org.w3c.*
- org.xml.*
- JAXP
- javax.xml.*
- Crimson
- org.apache.crimson.*
- JDOM
- org.jdom.*
- Xerces
- org.apache.xerces.*
- org.apache.wml.*
- XML4J
- com.ibm.xml.*
- org.w3c.*
It is even possible to have multiple versions of some of these Projects in case you need to use different versions at different times.