public Object runScript(String filename, String scriptContent) throws Exception {
   BSFOTPScript script = new BSFOTPScript(otpServer, filename, scriptContent);
   return script.run();
 }
 public Object runScript(File scriptFile) throws Exception {
   BSFOTPScript script = new BSFOTPScript(otpServer, scriptFile);
   return script.run();
 }