instant-messaging

What instant messaging system would you use, to extend a website with a secure 1:1 chat with their customer services representative? [closed]

↘锁芯ラ 提交于 2019-12-03 22:19:46
I need to implement a chat system for a website, so that customers of the can talk to their customer services representatives one-on-one online over the website. So what I need is a system which does: Shows a list of representatives in the browser, with status indicating if they're online or not Allows the user to open a chat with a representative; probably the user is presented with a new screen or pop-up where they can chat. The website is HTTP but the chat needs to be HTTPS therefore I guess having an overlay on the exitsing screen, to do the chat, e.g. like Facebook does it, isn't really

Suitable protocol for Instant Messaging

馋奶兔 提交于 2019-12-03 21:02:08
问题 We have to develop a native mobile app for Instant Messaging using a SUITABLE protocol. Also we are to develop a website for that application so that those who cannot login to mobile can continue their Instant Messaging through the website. Later on, we would be adding the facilities of voice and video calls to the both native mobile app as well as the website. Now my question is that, based on the above situation, which protocol we should go with? I did some research on the internet about

instant messenger implementation for rails?

限于喜欢 提交于 2019-12-03 13:31:58
问题 I have searched for some time investigating several technologies to build an simple instant messaging system for a ruby on rails app. It seems very complicated as I haven't found any implementations that are cross browser or any 1-1 proof of concept at all. Looked into: xmpp clients ( there is Candy on github only supports group chat ) xmpp servers & Rails ( lot of hassle no good integration ) Juggernaut ( no 1-1 , not supported by Internet Explorer cause of web sockets used) Private Pub by

Quickblox messaging fetch last n messages

放肆的年华 提交于 2019-12-02 03:54:35
问题 I'm using the Quickblox iOS SDK for instant messaging in my app. When a user logs in I retrieve the list of messages. I am trying to retrieve the last N messages. I use extended request parameters as specified in this document: http://quickblox.com/developers/SimpleSample-chat_users-ios#List_chat_messages This call retrieves the first 100 messages, not the most recent ones. I also checked out the list of parameters to send from here: http://quickblox.com/developers/Chat#Retrieve_messages

Allow users to send messages to multiple users simultaneously in a messaging app

喜你入骨 提交于 2019-12-01 12:58:30
问题 How is a single message sent to several friends simultaneously in messaging applications? I read in a Django question that this design is a M2M relation. You define 2 models (User and SentMessage) and the backend creates a third object? For example, Wechat and Facebook Messenger allow you to select multiple friends and send a single message to them simultaneously. How is this done in iOS, Parse or your own Node.js backend? You define your classes. user["username"] = String user["sex"] =

Android - correctly pairing and connecting two users in a random chat app using parse and pubnub

 ̄綄美尐妖づ 提交于 2019-12-01 11:59:08
I'm currently creating a random chat application where the user presses a button and is paired with another user and then they can chat. I plan on using Parse for user control and file storage, and pubnub for chat. My question is, what would be the correct way to pair and connect two users and put them into a chat together? Lets say user1 presses the search button to start searching for another user, user1's status in the parse database is then updated to 'searching' and the app then queries the database for another user who's status is also 'searching'. the query returns user2 and a new chat

Android - correctly pairing and connecting two users in a random chat app using parse and pubnub

喜夏-厌秋 提交于 2019-12-01 09:53:44
问题 I'm currently creating a random chat application where the user presses a button and is paired with another user and then they can chat. I plan on using Parse for user control and file storage, and pubnub for chat. My question is, what would be the correct way to pair and connect two users and put them into a chat together? Lets say user1 presses the search button to start searching for another user, user1's status in the parse database is then updated to 'searching' and the app then queries

Suitable protocol for Instant Messaging

天大地大妈咪最大 提交于 2019-11-30 22:50:23
We have to develop a native mobile app for Instant Messaging using a SUITABLE protocol. Also we are to develop a website for that application so that those who cannot login to mobile can continue their Instant Messaging through the website. Later on, we would be adding the facilities of voice and video calls to the both native mobile app as well as the website. Now my question is that, based on the above situation, which protocol we should go with? I did some research on the internet about that and am unable to choose amongst XMPP, MQTT and MUMBLE. Which one would be the best among them for

open source instant messenger?

独自空忆成欢 提交于 2019-11-30 13:33:47
问题 I am using VSTS 2008 + ASP.Net + Forms Authentication + .Net 3.5 + IIS 7.0 + C# to develop a Web Application. I want to add web based instant messenging feature to my web application (using Forms authentication), I just need very basic features, like text based message, user presence status, etc. I want to know whether any ready-to-use and easy to integrate components? Better open source. 回答1: Jabber/XMPP is open-source, there are many implementations (client and server) that are mostly open

Instant Messaging on Android with Google Cloud Messaging

这一生的挚爱 提交于 2019-11-30 12:01:42
问题 I was just looking at the new Google Cloud Messaging (GCM) and I was wondering if it is possible to use GCM for Instant Messaging on your Android application? I saw you can send data, like a message, from a server, but is it also possible to send from one device to another one? And how would this work? Some example code would be really helpful.. Tnx! 回答1: The official docs on Google Cloud Messaging for Android does mention that GCM can be used to develop an instant messaging app. ...or it