Socket socket = null;
try {
socket = new Socket("localhost", PORT);
KongaRequest request = new KongaRequest(MODULE_NAME, "", "");
request.addCommand(new KongaCommand(TO_FRONT, args));
new KongaRequestSocketSender(socket).send(request);
return true;
} catch (Exception ex) {
ex.printStackTrace();
} finally {
KongaNetUtils.close(socket);