unmarshaller.setEventHandler(validationEventHandler);
Schema schema = SchemaHelper.getSchema(schemaLocation);
if (schema != null)
unmarshaller.setSchema(schema);
InputSource source = new VFSInputSource(file);
Object result = unmarshaller.unmarshal(source);
return getOutput().cast(result);
}