// -------------------------------------------------------------------
  public void set() throws IOException {

    String c = File.createTempFile("network.", ".conf").getAbsolutePath();
    networkConfiguration.store(c);
    System.setProperty("network.configuration", c);

    c = File.createTempFile("ms.", ".conf").getAbsolutePath();
    peerConfiguration.store(c);
    System.setProperty("ms.configuration", c);
  }