Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

when I use hexBinary in xsd schema JAXB use HexBinaryAdapter to convert it into byte. But how JAXB convert when I use base64Binary in XSD schema ? there is no XmlAdapter. He use default xmlAdapter or what ? How it is converting ? thx for help

share|improve this question

1 Answer

up vote 0 down vote accepted

There is none, because base64Binary is the JAXB default for handling binary data. You just annotate a byte[] field/property, and it's marshalled/unmarshalled automatically as base64Binary.

share|improve this answer
yea but there must be some conversion how JAXB make with string binary data – hudi Aug 28 '11 at 23:12
@hudi: Yes, but it's not exposed in the public API. – skaffman Aug 29 '11 at 8:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.