KMessageBox::error(0,i18n("<qt>Unable to establish connection with backend server<p>Please verify that you are currently connected to a workspace</qt>"),i18n("Connection Failed"));
close();
return;
}
elseif(response=="ERRNOTAVL"){
connToServerState=-1;
connToServerConnecting=false;
disconnectFromServer();
KMessageBox::error(0,i18n("<qt>The backend server is not available at this time<p>Please try a different workspace, or try again later</qt>"),i18n("Connection Failed"));
close();
return;
}
elseif(response=="ERRNOSERV"){
connToServerState=-1;
connToServerConnecting=false;
disconnectFromServer();
KMessageBox::error(0,i18n("<qt>The active laboratory workspace does not support the requested service</qt>"),i18n("Service Unavailable"));
@ -1076,35 +1076,12 @@ printf("[RAJA DEBUG 400.0] Got '%s' from the server\n\r", response.ascii()); ffl
updateDisplay();
return;
}
elseif(response=="ERRNOCONN"){
connToServerState=-1;
connToServerConnecting=false;
disconnectFromServer();
KMessageBox::error(0,i18n("<qt>Unable to establish connection with backend server<p>Please verify that you are currently connected to a workspace</qt>"),i18n("Connection Failed"));
close();
return;
}
elseif(response=="ERRNOTAVL"){
connToServerState=-1;
connToServerConnecting=false;
disconnectFromServer();
KMessageBox::error(0,i18n("<qt>The backend server is not available at this time<p>Please try a different workspace, or try again later</qt>"),i18n("Connection Failed"));
close();
return;
}
elseif(response=="ERRNOSERV"){
connToServerState=-1;
connToServerConnecting=false;
disconnectFromServer();
KMessageBox::error(0,i18n("<qt>The active laboratory workspace does not support the requested service</qt>"),i18n("Service Unavailable"));
printf("[DEBUG] Connection terminated by remote host %s:%d for user %s@%s\n\r",m_srvServiceHostName.ascii(),m_srvServicePort,m_authenticatedUserName.ascii(),m_authenticatedRealmName.ascii());fflush(stdout);
printf("[DEBUG] SERV command parameter was %s from user %s@%s\n\r",libname.ascii(),m_authenticatedUserName.ascii(),m_authenticatedRealmName.ascii());fflush(stdout);
m_databaseActivityCursor->select(TQString("username='%1' AND realmname='%2'").arg(m_authenticatedUserName).arg(m_authenticatedRealmName));