开发者

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 "&#x18" 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


&#x18 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.


&#x18 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?

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜