DeploymentFacility df = null;
try {
df = (DeploymentFacility) Class.forName(LOCAL_DF).newInstance();
} catch (Exception ex) {
//@@@ log this
ex.printStackTrace();
return null;
}
ServerConnectionIdentifier sid = new ServerConnectionIdentifier();
sid.setHostName("localhost");
df.connect(sid);
return df;