i have a really complex XML-Schema (it is designed by Swift :-) There are many simpleTypes declared which will be used within the Schema-Validation.
Now in my Java-Web-Application I have some input fields which should have the same validation rules like described in the XML-Schema. For every input field I know the corresponding SimpleType from the schema. So is there any possibility to check the String I get from the input field against the rules defined in the schema?
I don't want to generate an Java-Object-Model from the schema with Jaxb because the schema is really complex and the genreation leads to nearly 100 Java-classes only for one schema definition.