That is what we were after. So there are some underlying class problems. AFAICS
com.sun.xml.bind.v2.ContextFactory comes from axb-impl-2.1.12.jar. This would indicate that you are not using the JAXB implementation as part of Java 6, but that there is still somewhere some older jaxb-api.jar.
Try scanning your jar files for xml related classes. Something like this:
Code:
for i in `find . -name "*.jar"`; do count=$(jar -tvf $i | grep -c "javax.xml.bind.JAXBContext") ; if [ "$count" -gt "0" ]; then echo "Match in $i" ; fi; done
--Hardy