Questions tagged [user-presence]

User-presence refers to the communication status of a participating user in a communication system such as Instant Messaging (IM).

Description

Presence is a piece of status information containing an availability state. It indicates the willingness of a potential communication entity to participate in a chat communication.

Common Uses

The following list includes, but not limited to the common user presences.

  • Online
  • Available to chat
  • Busy
  • Do not disturb
  • Away
  • Offline

In current standards, there are a richer choice in presence attributes such as user's mood, emotion and location.

Privacy

Presence is a sensitive information when it comes down user privacy. Thus, in most cases, a communication system would draw limits to whom a user's presence may be revealed to.

Standard

Presence is widely used in Instant Messaging (IM). The most popular standard protocol for presence is XMPP, short for eXtensible Messaging and Presence Protocol. To read more about XMPP's internet standards, visit http://xmpp.org/rfcs/rfc3921.html.

131 questions
1
vote
0 answers

Why isn't onDisconnect in Firebase being triggered?

I'm trying to build a presence system using firebase. The problem is that onDisconnect is not triggering when I close my app or turn off my network connectivity. My Code: FirebaseDatabase firebase=FirebaseDatabase.getInstance(); …
1
vote
1 answer

How do I change user presence status in RingCentral programmatically using C#?

I have created as program in C# that is designed to display the users status and availability from RingCentral. This works brilliantly and I can sort the users by availability, name, etc. I need to add the functionality to change the status of the…
Ogre
  • 21
  • 5
1
vote
1 answer

Can I select particular processes/sockets tracked via Phoenix Presence?

My use case is to have multiple users connected to a lobby/waiting room, but only two of them will be picked from the lobby to start a conversation, after which they should be removed from the lobby. How can I implement that? Note that in this…
xji
  • 7,341
  • 4
  • 40
  • 61
1
vote
1 answer

Ondisconnect is fired if app goes to background mode

I have the following code: func OnlineStatus(userID: String){ handle = Auth.auth().addStateDidChangeListener { (auth, user) in if let user = user { // User is signed in. self.UID = user.uid …
DU.DE
  • 57
  • 8
1
vote
0 answers

React Native Firebase Presence Idle

https://firebase.googleblog.com/2013/06/how-to-build-presence-system.html?m=1 In this blog, I can see idle is added through script, how can we add idle in order to listen the statuses (onIdle, onAway & onBack) in react native?
1
vote
2 answers

Possible to do a HTTP request to API to get Presence Data from a Lync 2010 server

Just wanted to check whether its possible to do an HTTP request to get Presence data on Lync 2010, sort of like how it done on Lync 2007 e.h.
1
vote
1 answer

PubNub show typing indicator

We are using PubNub for Chatting, and we are trying to add Typing indicator when a user types. We are trying to send the presence in state-changed, using client.publish method in swift, with the presence channel, when I publish that, I don't receive…
anjnkmr
  • 838
  • 15
  • 37
1
vote
1 answer

Determine if someone is on with flash?

I want to update a row in mysql when a user uses an application with flash. And when they exit that application, I want to change the row to reflect that the user has left. Is there a way to do this easily? Currently, I'm thinking of writing a…
user434366
  • 539
  • 7
  • 15
1
vote
1 answer

How to remove presentity users entry in kamailio server?

I found that in: kamctl db show presentity Is the presence information of the users, but how can I errase such entry? of a user? And how can I define only one entry in that database by user? I use this code, when I receive a publish but this adds a…
JMR
  • 765
  • 1
  • 8
  • 31
1
vote
0 answers

PubNub - Erratic disconnect behavior

This may be working as intended and I am just not fully understanding how disconnects work, but I have a chat client that I set the heartbeat to 30seconds (i know that's low). Using chrome's debugger throttling I would set throttling profile to…
Josh Danko
  • 73
  • 1
  • 6
1
vote
1 answer

XMPP roster getPresence status of a user (java)

I'm using this code to get the presence status of a user Roster roster = connection.getRoster(); Presence userPresence = roster.getPresence(name + "@" + HOST); But userPresence always returns "unavailable" although the user is…
Kar4
  • 25
  • 8
1
vote
3 answers

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

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…
1
vote
1 answer

Mobicents presence server. How to register softphone?

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…
Jardanian
  • 711
  • 1
  • 6
  • 11
1
vote
1 answer

Presence Server working details

I am fairly new to the presence server thing. I have got the idea about how the presence server works, concept like presentity, watcher , PUBLISH, SUBSCRIBE, NOTIFY, SIP transactions. I have to work on a project prototype where we have the Presence…
user3275095
  • 1,605
  • 4
  • 24
  • 36
1
vote
1 answer

Presence icon only showing for first person

I am trying to show my colleagues in my custom webpart. So I adding presence Icon to each of colleague. It is showing fine when colleague is 1 only. If We have colleague more than 1 Presence Icon showing for 1st colleague you can dropdow that Icon…
James123
  • 11,184
  • 66
  • 189
  • 343
1 2 3
8 9