String host = (args.length > 0) ? args[0] : "localhost";
int port = (args.length > 1) ? Integer.parseInt(args[1]) : 8080;
CopperMonitoringService monitoringService;
LoginService loginService;
RemoteInvocationExecutor remoteInvocationExecutor;
if(unsecure) {
monitoringService = CopperMonitorServiceDefaultProxy.getServiceProxy(copperMonitoringService);
loginService = new DefaultLoginService();
remoteInvocationExecutor = new DefaultRemoteInvocationExecutor();
} else {