I am using an OpenFire server for instant messaging and a JSJaC JavaScript library on the client. I am new to XMPP technology.
I want to load a load. I want to send a list of users and get status for each. Sort of
$(function(){
var UserList = ["Isis", "Jackob", "Oybek"];
con.send(UserList, OnComplete);
});
function OnComplete(myList){
for (el in myList)
if (el.IsOnline) {
}
}
Is it possible?
I searched the documentation, examples, and other similar answers, but did not find any links.
Oybek source
share