*/
public synchronized void initDaemons(ApplicationConfigurationHelper ph) {
//Start OSC Server (OSC Interface)
try {
int listeningOscPort = Integer.parseInt(ph.getProperty(ConfigConstant.NET_OSC_LISTENING_PORT, "9876") );
oscServer = new PixelControllerOscServer(listeningOscPort);
oscServer.startServer();
//register osc server in the statistic class
this.pixConStat.setOscServerStatistics(oscServer);
} catch (Exception e) {
LOG.log(Level.SEVERE, "failed to start OSC Server", e);