diff --git a/Service/ServiceImplementations/AccountingServiceImp.cs b/Service/ServiceImplementations/AccountingServiceImp.cs index 34bef6e95..290c0e867 100644 --- a/Service/ServiceImplementations/AccountingServiceImp.cs +++ b/Service/ServiceImplementations/AccountingServiceImp.cs @@ -898,7 +898,7 @@ namespace BeWo.Service.ServiceImplementations DAOFactory.GenericDAO.Update(entity); - var app8_response = SendApp8SendNewRequest(protokoll, user.LoginName, user.RC2EncryptedHash); + var app8_response = SendApp8SendNewRequest(protokoll, user.LoginName, user.BCryptPassword); var app8_protokoll = app8_response.GkvTransferProtokollDC; @@ -1089,6 +1089,9 @@ namespace BeWo.Service.ServiceImplementations var response_app8 = JsonConvert.DeserializeObject(response_app8_str); + if (!response_app8.Success) + throw new DakotaException(response_app8.Message); + return response_app8; } ///