I found out that the lang/dcl.sql test is failing in 10.1 because the self signed certificate on the test jar file has expired. I'll figure out if there's some way to have a better solution with the signed jar file. I sign the jar file using:
-- Replace with a signed jar -- (self signed certificate) -- -- Commands used to sign jar -- keytool -genkey -dname "cn=EMC CTO, ou=EMC APP, o=Easy Mail Company, c=US" -alias emccto -keypass kpi135 -keystore emcks -storepass ab987c -- keytool -selfcert -alias emccto -keypass kpi135 -keystore emcks -storepass ab987c -- jarsigner -keystore emcks -storepass ab987c -keypass kpi135 -signedjar dcl_emc2s.jar dcl_emc2.jar emccto -- -- Maybe the build task could generate the signed jar file, instead of having it checked into the codeline. Dan.
