My Cisco Jabber system is set up with active directory login and passwords.
I am creating a site that will allow use of the jabber client - I am using cwic.js calls to register the phone for the client in this manner:
$('#container').cwic('init', {
ready: function (defaults) {
$(this).cwic('registerPhone', {
user: 'aduser',
password: 'adpassword',
cucm: '123.45.6.78',
success: function () {
$('#callbtn').attr('disabled', false);
}
});
}
});
Since my page is using active directory credentials I can get the user name, but I cannot get the password to pass it along. Is there some way to pass the active directory credentials along to the registerPhone call? Otherwise I'm not sure how I'm going to make sure the call is being made by the current user.
Thanks,
Joe Sullivan
Ligonier Ministries