Hello, Let's suppose I store an XML string into a variable
String resp = new String("<?xml version=\"1.0\" encodin...");
and the schema definition related to this XML in another one:
String xsd = new String("<xs:schema xmlns="http://schema-...");
do you think there is a way to validate and unmarshall 'resp' into objects (using JAXB for example) ?? Has anybody already tried or successfully implemented such stuff ??
In advance, thanks a lot for any suggestion... Seb