saveSettings();
}
int port = Integer.parseInt(portString);
currentConnection = new ConnectionInfo(server, port);
Session session = this.getSession();
session.connect(currentConnection);
if (session.isConnected()) {
this.setDefaultLayout();
} else {
JOptionPane.showMessageDialog(this,"Could not connect to mote control server at "+server+".");
}
} catch (Exception ex) {