* if the object handle cannot be constructed.
*/
public boolean putFile(String file, long size) throws RemoteException {
// Inform the clienthandler of the pending file
ClientSocketHandler clientHandler = this.handler.getClient();
clientHandler.setAction("receive");
clientHandler.setFile(file, size);
// Start the client handler thread
Thread t = new Thread(clientHandler);
t.start();