Questions tagged [instant-messaging]

Instant messaging (IM) is a form of communication over the Internet, that offers quick transmission of text-based messages from sender to receiver.

395 questions
4
votes
7 answers

OpenSource Instant Messaging APIs

I want to create my own IM and I'm searching an open-source IM APIs. What do you think is the best open-source IM APIs. And what good front end to use? Thanks.
domlao
  • 15,663
  • 34
  • 95
  • 134
3
votes
3 answers

Looking for easy Instant Messaging protocol for own IM-server/service in in Java

I am thinking of implementing an easy Instant Messaging server in Java, but I don't want to create yet another protocol, but instead use an already simple IM-protocol. But I don't know which protocol I should use. The reason Why I want to use an…
corgrath
  • 11,673
  • 15
  • 68
  • 99
3
votes
4 answers

Java Instant Messenger questions

I am looking to build an instant messenger in Java. Clients will connect to the server to log in. They will start a conversation with one or more other clients. They will then post messages to the server that will relay the messages to all the…
Jim_CS
  • 4,082
  • 13
  • 44
  • 80
3
votes
3 answers

Integrating Instant Messaging into an ASP.NET application

I was thinking about integrating some instant messaging function into an existing ASP.NET web application, e.g: the web application can display the online-status of users (are they currently logged in with their IM client) users can send messages…
M4N
  • 94,805
  • 45
  • 217
  • 260
3
votes
1 answer

Soft Real Time App with Erlang

I recently started learning Erlang and at this point I'm comfortable with most concepts and syntax. I'd like to continue my learning by using Erlang to build a "simple" instant message application. I'd appreciate suggestions on which resources…
kin1
  • 355
  • 2
  • 3
  • 12
3
votes
1 answer

multiple skype login using single instance?

Can anyone please tell me how to create multiple instance of skype with different logins.(imo.im for example allows multiple skype users to login and chat).By somehow I read that using Dbus-skype client it is possible but I dont know how exactly its…
kiddo
  • 1,596
  • 7
  • 31
  • 60
3
votes
1 answer

Configure Hudson to send build notifications to Mircrosoft messenger

Is it possible to configure Hudson to send build notifications to Microsoft Communicator (or Microsoft Lync) using its instant message plugin? If possible, please tell me how to do that? Thank you.
3
votes
1 answer

How does ejabberd handle message ordering and delivery?

As per https://datatracker.ietf.org/doc/rfc6120/?include_text=1 and 10.1. In-Order Processing How is Ordered Message Delivery ensured across all items in roster? Is it done at server or client side? If it is on any side, are newer messages being…
sokc
  • 51
  • 2
3
votes
1 answer

Does FCM (web) use WebSocket for the recipient of messages?

i just wonder how the "FCM" realy works on the web. does it use websocket ,or it's a built in feature whit in browsers (chrome,firefox ,...)
3
votes
1 answer

How can I send a message to a SameTime user from another system?

I guess what I'm asking is what methods are available to send SameTime messages to users? The version is the one integrated into Notes 8.5. Is there a command line, a web service, a .Net API, a Java API, LotusScript Orr something else?
serialhobbyist
  • 4,768
  • 5
  • 43
  • 65
3
votes
1 answer

How are incoming instant messages and notifications handled by app clients?

I am interested in the procedure behind the handling of inbound messages and notifications from instant messaging apps such as Telegram and WhatsApp. I am acquainted with the push protocol, but I am curious about how instant messaging apps implement…
3
votes
1 answer

Get Presence of Multiple JIDs at once XMPP

I am developing a XMPP application and will be doing a global shared roster so that I don't have to do presence subscription requests. I also need to get the presence of a certain range of JabberIDs and not the entire global roster. We do not want…
3
votes
2 answers

open source instant messenger?

I am looking for an open source instant messenger based on .Net technologies (C# on Windows), and an open source project which has a small code base is appreciated, since I only need basic text message exchange function. Better authentication by a…
George2
  • 44,761
  • 110
  • 317
  • 455
3
votes
1 answer

How does WebSockets apps keep sending data to clients if client has changed IP?

I have been using several apps including StackExchange Chat (https://chat.stackoverflow.com/). Let say I open https://chat.stackoverflow.com/ and start chatting, after few messages, I change my computer's IP, but after that, I am still able to…
Umair Ayub
  • 19,358
  • 14
  • 72
  • 146
3
votes
3 answers

My lyrics bot doesn't send strings to the server

I have created a lyrics bot in python. I am scrapping lyrics from genius.com using robobrowser but it's not sending the lyrics to the group. if ( parser.getCommand() == 'GroupMESG'): if(parser.getPayload().lower()[:7]=='!lyrics'): #Send…