Ich flieg beim Connect raus
Code:
var transportFactory = UciProxyFactory.createWithTransportFactory(new XmppUcpTransportFactory(applicationName, domain, 5222, true));
var hashedPassword = PasswordEncryption.GetXmppSecret(loginId, password, true, false);
log.Debug($"Login::hashedPassword::{hashedPassword}");
_uciProxy = transportFactory.createUciProxy(loginId, PasswordEncryption.GetXmppSecret(loginId, hashedPassword, true, true));
log.Debug($"Login::_uciProxy::{_uciProxy}");
_uciProxy.connect();
log.Debug($"Login::_uciProxy.connect()::{_uciProxy.getConnectionState()}");
_uciProxy.subscribeEventsAsync(this, typeof(UciCallEvents));
_callRequests = _uciProxy.getRequests(typeof(UciCallRequests)) as UciCallRequests;
StarfaceEventReceiver.ReceiveLoginState(true);
return true;
muss ich beim createUciproxy das Passwort im Klartext oder als Hash übergeben?
Kann ich an der Starface irgend einen Debug für den Login einschalten?
Lesezeichen