public static String getDefaultRepServer() {
String theValue = "";
try
{
GetConfigCommand cmd = new GetConfigCommand("defaultrepserver");
cmd.execute();
theValue = cmd.getParameterValue();
} catch (Exception e) {
log.error("The getconfig command returned an error:" + e.getMessage());
log.debug("The getconfig command returned an error:" + e.getMessage() + " - " + e.getStackTrace());
}
return theValue;