* @throws RemoteException
*/
public void connect() throws RemoteException {
try {
_server = new Socket(_host, _port);
Connect connect = new Connect(_version);
sendCommand(connect);
}
catch (Exception e) {
throw new RemoteException("Unable to connect to server." ,e);
}