I am trying to find a good serialization library in java world. What I need: 1. It can serialize/deserialize object into xml, of course. 2. It has to use xml definition and code can be generated by any clients. I don't want to share code with my clients. I would rather share xml definition and let them generate code from it.
I found JAXB can do No1, but I am not sure if it can adopt No2. Is there anything else I can use.
Thanks a lot.