String schemaPath =
((schemaLocation)
.startsWith(File.separator) ? "" : serverHome)
+ schemaLocation;
FileInputStream in = new FileInputStream(schemaPath);
PolicyParser policyParser = new PolicyParser(in);
ValidationUtility.setFeslPolicyParser(policyParser);
} catch (IOException ioe) {
throw new PolicyStoreException(ioe.getMessage(),ioe);
} catch (SAXException se) {
throw new PolicyStoreException(se.getMessage(),se);