*/
public void disconnect() throws RemoteException, CommandException {
try {
Disconnect disconnect = new Disconnect();
sendCommand(disconnect);
if (disconnect.disconnected()) {
_server.close();
} else {
throw new RemoteException("Unable to disconnect from server.");
}
} catch (RemoteException e) {