is it possible to check a value in a java object with some rules in a xml schéma ?
For exemple, I have a String txt = "blablabla"
, and I should verify if it's ok for <xs:element name="foo" type="string32"/>
, with string32 a restriction to 32 caract. length max.
Is it possible ? If it's not possible with xml schema and jaxb, is there other schema langage which is possible ?
Thanks.