// be changed to just - (rspVer >= REMOTE_DEPLOY_RESPONSE_VER_0)
// but until then, be more restrictive so we can handle old servers
// that don't send a version as the first thing, but UTF instead...
if ((rspVer >= REMOTE_DEPLOY_RESPONSE_VER_0) && (rspVer <= REMOTE_DEPLOY_RESPONSE_VER)) {
// 1) a UTF string, the status (should be "OK")
String status = in.readUTF();
if(!status.equals("OK")) {
progress.fail("Unable to upload files to server. Server returned status="+status);
log.error("Unable to upload files to server. Server returned status="+status);
return;
}