If you want to backup your Hudson configuration, why not back it up to a version control system (VCS)?
Stephen Connolly has posted a solution in his blog: Keeping Hudson configuration and data in SVN
If you want to backup your Hudson configuration, why not back it up to a version control system (VCS)?
Stephen Connolly has posted a solution in his blog: Keeping Hudson configuration and data in SVN
If you see this error in JavaScript (for example in a BIRT report):
org.mozilla.javascript.EvaluatorException: error instantiating (): class java.sql.Array is interface or abstract
then don’t include the package java.sql
(as in importPackage(Packages.java.sql);
) because if you do, new Array()
will find the SQL class first and it will fail.