String login = (String) message.getElement("SignonRq.SignonPswd.CustId.SPName");
String type = (String) message.getElement("SignonRq.SignonPswd.CustPswd.CryptType");
String pwd = (String) message.getElement("SignonRq.SignonPswd.CustPswd.Pswd");
Client clientReg = remote.getClient(brand, login);
Client clientRq = new Client(brand, login, type, pwd);
if (clientReg != null && ValidationManager.validate(clientReg, clientRq))
return;
throw new ValidationException(clientReg, clientRq);
} catch (NamingException e) {
throw new ParticipantException(e.getMessage());