All I want is to show the GUI on the already started app. I have file.lock in place singleinstance style app. I want something lightweight not IPC or javaspace.
Was thinking to have a Server.accept() to ping the already started app and make it do setVisible(true)
But that would probable lead to trouble if port is in use. One could set up a port number table/algorithm to follow if first port is taken but then again its a bad idea.
What you think, what are the alternatives?