Mysteriously, JAXB is throwing a JAXBException that says that some property "retainReferenceToInfo" is invalid. No where in my code does this appear, what's going on?
views:
46answers:
1
A:
It turns out that this means that the version of Jersey and JAXB that I was using were incompatible - or more precisely transitive dependencies were pulling in an older version of JAXB. I removed this version of JAXB from the class path and everything seemed to work.
James Kingsbery
2010-03-25 16:48:37