String argInLogin = m_tfLogin.getText();
String argInProject = m_cbProject.getSelectedItem().toString();
String argInPassword = new String(m_pfPassword.getPassword());
data.insert(argInLogin + argInProject + argInPassword);
// send a write command to the device
DeviceData argout = proxy.command_inout("Login", data);
strArgout = argout.extractString();
} catch (DevFailed exception) {
AuthServerMessageManager.notifyExecuteCommandErrorDetected(pathAuthServer, "Login",exception);
}
}