.addKeystoreLocation("ssl/client_keystore.jks")
.useKeystoreAsTruststore()
.useSsl(true)
.buildFactory();
runtimeEngine = factory.newRuntimeEngine();
try {
runtimeEngine.getTaskService().claim(23l, "user");
fail( "This should have failed because there's no server running... ");
} catch( RemoteCommunicationException rce ) {
logger.info("The " + NoSuchAlgorithmException.class.getSimpleName() + " above is expected, nothing is wrong.");