user-presence

Mobicents presence server. How to register softphone?

纵饮孤独 提交于 2020-01-11 12:51:34
问题 I have installed the Mobicents Presence server following the guide. The server is installed but now I am not able to proceed further. I mean now how to test the presence or register the devices with XDM, PS and RLS. How do I find on which port the services are running? I am able to see register messages received to the server but on the softphones request timeouts. Is there any documentation which I am missing? Please help. 回答1: The Mobicents SIP Presence Server is not supported anymore.

How to set and get presence in xmpp android

ⅰ亾dé卋堺 提交于 2020-01-04 05:36:18
问题 I am new to android and xmpp..i am trying to build a chatting app using xmpp. I want to know How to set my presence and also get other users presence in xmpp android. i tried with their provided documentation but it is not working ..always status shows null and type as unavailable. please post a detail answer. Roster roster = Roster.getInstanceFor(connection); //Get all rosters if (!roster.isLoaded()) try { roster.reloadAndWait(); } catch (SmackException.NotLoggedInException | SmackException

How do I display an MOC user's online status on a web page *without* Active-X?

断了今生、忘了曾经 提交于 2019-12-11 13:02:24
问题 Is it possible to display a user's online status without Active-X? In my googling I've found a number of articles about displaying MOC online status on Sharepoint using the IMNRC() function in the OWS.js file but this seems pretty old-skool with all of the Active-X object instantiation and as a result will only work in Internet Explorer. Is there a simple method of getting an online status using some kind of back-end API call to the communication server by passing their email address? cheers

smack presence listener in multi user chat

空扰寡人 提交于 2019-12-10 18:25:19
问题 smack presence listener in multi user chat not getting called. Used Smack Api to login and then added roster.addRosterListener(mRoasterListener); but could not get any success to listen when presence of other user of the chat room changes. I tried following code to get the presence listener to work : connection.login(loginUser, passwordUser); MultiUserChatManager manager = MultiUserChatManager.getInstanceFor(connection); muc = manager.getMultiUserChat(roomID + "@" +context.getString(R.string

How Does the Office Communicator Presence Status Work?

强颜欢笑 提交于 2019-12-10 04:57:33
问题 I'm interested in finding out more about the Microsoft Office Communicator IM client, and how it determines your presence (i.e if you are at your computer or away). Can anyone point me towards a tutorial that explains this, or details of the API? 回答1: After a bit of research, it looks like the Office Communicator client makes use of a simple audit of keyboard and mouse activity to determine the presence of a user. This article discusses the Microsoft Communicator presence status, and these

Pubnub Presence feature in Python (GAE)

╄→гoц情女王★ 提交于 2019-12-08 06:35:55
问题 PubNub, its really awesome for real-time communication. as per as documention given by pubnub team, am done with subscribe and publish instance, its working fine. Now am wondering how get a particular user already/presence with PubNub channels in Python(GAE) apps, but I didn't find a complete guide to how to implement this feature in both server and client side. NOTE: am using here Python Google App Engine & Javascript. 回答1: PubNub presence is a way to follow up on joins/leaves in a channel,

Firebase presence system that works for multiple devices

那年仲夏 提交于 2019-12-07 20:23:48
问题 In my chat application based on Firebase, I wanted the ability for a user to know if another user is online on any one of the devices (browser / iOS / Android). I referred to the sample shown on this page. But using this example, I noticed multiple connection keys getting created, but not getting deleted properly. So I ended up enhancing the example like this: function _managePresence(uid) { // top level presence node var ref = coreService.presence.child(uid); // stores connections from

Pubnub Presence feature in Python (GAE)

旧时模样 提交于 2019-12-07 03:43:25
PubNub, its really awesome for real-time communication. as per as documention given by pubnub team, am done with subscribe and publish instance, its working fine. Now am wondering how get a particular user already/presence with PubNub channels in Python(GAE) apps, but I didn't find a complete guide to how to implement this feature in both server and client side. NOTE: am using here Python Google App Engine & Javascript. PubNub presence is a way to follow up on joins/leaves in a channel, what you need is the here_now feature if I understand correctly, Taken from the Pyton lib is ( https:/

How to Implement Pubnub Presence feature in Ruby

我只是一个虾纸丫 提交于 2019-12-06 08:12:56
问题 I was wondering how to implement user presence with PubNub in Rails apps, but I didn't find a complete guide to how to implement this feature in both server and client side. 回答1: PubNub Presence with Ruby and JavaScript Get started easily with PubNub Presence in Ruby and JavaScript by following this short guide which connects the state between the two PubNub SDKs. First you'll want to make sure you have the latest PubNub Ruby GEM client SDK install on your server. But before we get into the

Firebase presence system that works for multiple devices

梦想与她 提交于 2019-12-06 05:00:57
In my chat application based on Firebase, I wanted the ability for a user to know if another user is online on any one of the devices (browser / iOS / Android). I referred to the sample shown on this page . But using this example, I noticed multiple connection keys getting created, but not getting deleted properly. So I ended up enhancing the example like this: function _managePresence(uid) { // top level presence node var ref = coreService.presence.child(uid); // stores connections from various browsers or devices var myConnectionsRef = ref.child('connections'); // stores the timestamp of my