try {
clazz = ClassUtil.loadClass("com.naryx.tagfusion.cfx.CFXNativeLib");
} catch (ClassException e) {
throw new CFXTagException(
"cannot initialize C++ Custom tag library, make sure you have added all the required jar files. "+
"GO to the Railo Server Administrator and on the page Services/Update, click on \"Update JARs\"");
}
try {
processRequest=clazz.getMethod("processRequest", new Class[]{String.class,String.class,Request.class,Response.class,boolean.class});
} catch (NoSuchMethodException e) {
throw new CFXTagException(e);
}
}
}