I have a Java application that uses the SOAP API software (Polarion) and I get BeanDeserializer warnings (whatever that is) that I want to suppress because they flood my log file but have no known effect.
So, I get warnings like
[WARN] BeanDeserializer - Invalid element in com.polarion.alm.ws.client.types.tracker.WorkItem - linkedOslcResources
but I can’t understand what this means.
Based on the information provided in another thread , I came to the conclusion that this warning is due to an outdated axis library (I am currently using the-1.4.jar axis). I used an updated version from this source , imported .jar and deleted the first, but suddenly there were errors everywhere, so I restored my libs to have only the-1.4.jar axis.
The apache page does not allow the .JAR to load the new version of the axis, and maven repo says 1.4 is the last.
And now I have no ideas.
source
share