if ( !file.exists () ) throw new RuntimeException("Error: schema file not found !");
InputStream istrm = new FileInputStream ( file );
InputSource is = new InputSource ( istrm );
SchemaFactory schf = SchemaFactory.lookup ( SchemaFactory.NAMESPACE_SCHEMATRON );
Schema sch = schf.compileSchema ( is );
validator_ = sch.newValidator();
}
public Map act(Redirector redirector, SourceResolver resolver, Map objectModel, String src, Parameters param) throws java.lang.Exception {
Request request = ObjectModelHelper.getRequest(objectModel);