Need help in finding exception "javax.xml.bind.UnmarshalException - with linked exception:"
I tried to store a resume in an online CRM on trying to save that i got the following exception
javax.xml.bind.UnmarshalException - with linked exception: [javax.xml.stream.XMLStreamException: ParseError at [row,col]:[73,12] Message: Character reference "" is an invalid XML character.]
i can store the resumes using the apis which they have exposed .The Resume which i am sending is in simple tex开发者_JAVA技巧t format

is a representation of the character with hex value 18
, and this is not a character permitted by the XML specification (it's an ASCII control code of some form). JAXB is quite rightly refusing to parse it.
You need to find out what is writing that data in the first place, and fix it, because it's not writing valid XML.
 appears to be the CANCEL character . Is there some way the keyboard signal to stop the program could be ended up being read in to the input on resumption?
精彩评论