chat

UCMA: Chat with users not in AD

余生颓废 提交于 2019-12-12 10:25:59
问题 a customer wants enable a chat/instant messenger for his application webside. He is using Lync Server internally to Chat in-house. Now, he requires the following: A external user (which will not be an AD user) logs into the webside is able to chat with a person inside the company. The internal user will receive those messages via his lync client. What's the best way to achieve this? i thought about bot that delegates messages from the webside to the lync server that does the rest. But how can

XMPP IQ result parsing issue

 ̄綄美尐妖づ 提交于 2019-12-12 10:07:32
问题 I am building a XMPP chat client app with eclipse, java and asmack. Using tutorials and many many google searches I managed to get the buddy list working, actual chatting also works fine. My problem is with searching for more buddies to add to my contacts list. The XML to send is exemplified here : http://xmpp.org/extensions/xep-0055.html My request is : <iq id="search123" from="name3@webserv.xxx.com/name3" to="search.xxx.zzz.com" type="set" > <query xmlns="jabber:iq:search" > <nick> android

Setting BOT properties in AIML

我是研究僧i 提交于 2019-12-12 09:25:17
问题 In AIML I have seen various files where the Bot properties is being used. For example : <bot name="name" /> Here, the bot name is being used, but I am not able to find the place where to set this property, i.e. where should I define the name. On searching I found that its stored in the .properties (link) file, but I cannot find the file anywhere. There is also a github repsitory which has many files and used the bot properties , but here also no .properties file : Repo Link So, where should I

Secure, customizeable, open-source chat engine on PHP/JavaScript for all popular browsers

ぐ巨炮叔叔 提交于 2019-12-12 09:09:13
问题 Please recommend Secure, customizeable, open-source chat on PHP/JavaScript for all popular browsers. 回答1: Wrote my own chat. 回答2: Looks like your are looking for something like phpopenchat. It is secure, open-source, customizable and works an a PHP-basis for common browsers. 来源: https://stackoverflow.com/questions/2880988/secure-customizeable-open-source-chat-engine-on-php-javascript-for-all-popular

ionic 2 + angular 2 : auto scroll to bottom of list / page / chat

青春壹個敷衍的年華 提交于 2019-12-12 07:46:33
问题 I'm trying to code a page with two segments "chat" and "content". I want that one "chat" segment the page auto-scroll to the bottom with no effect. The chat is a <ion-list> with several <ion-item> . <ion-list> <ion-item> item 1 </ion-item> <ion-item> item 2 </ion-item> .... <ion-item> item 20 </ion-item> <ion-item> item 21 </ion-item> <!-- user should see directly this item on bottom of the page --> </ion-list> I'm using Javascript, not typescript, and I don't wan't to use jQuery. Thanks :)

Simple Chat using socket connection

大憨熊 提交于 2019-12-12 06:47:10
问题 I am trying to make a simple chat. I have a server that handles more clients. This is what i did until now : the connections , i can identify on my server which client is sending the message , but the problem is that on client i can't get full conversation like on the server .For example Client_1 (writing) msg : hi Client_2 (writing) msg : hi from cl2 results Server : Client_1 : hi Client_2 : hi from cl2 Client_1 Client_1 : hi Client_2 Client_2 :hi from cl2 I want to achieve that both clients

Php chat application questions [closed]

萝らか妹 提交于 2019-12-12 06:46:13
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 7 years ago . I being new to php/mysql , have decided to implement a simple chat application. Here are some specific questions.. 1) In facebook, if i send a chat message, it updates the chat log using javascript but it will

Java chat program giving me Connection Refused [duplicate]

寵の児 提交于 2019-12-12 05:39:45
问题 This question already has an answer here : RMI connection refused on localhost (1 answer) Closed 4 years ago . I am trying to build a java chat program. I have 7 classes for server and client altogether. My errors are as follows when I run any class Exception in thread "main" java.rmi.ConnectException: Connection refused to host: 192.168.56.1; nested exception is: java.net.ConnectException: Connection refused: connect at sun.rmi.transport.tcp.TCPEndpoint.newSocket(Unknown Source) at sun.rmi

Need direction in creating a voice chat application

徘徊边缘 提交于 2019-12-12 04:45:01
问题 I want to create a voice chat application as a part of a project. However, i am totally lacking direction regarding the programming language to use, the technologies involved. Can somebody please guide me as to how i should proceed ? Here are the features that i require : user to user voice chat ability to chat in conference (more than 2 users) How do i connect one user to another ? How to handle voice transmission ? How to effectively route packets in a conference ? I'm thinking the most

Server/client not sending or receiving data through socket [Java]?

旧街凉风 提交于 2019-12-12 04:43:26
问题 I set up a server/client chat program. What's supposed to happen is a server is setup that can A) read from clients, A2) take what's read from clients and send it to all other clients or B) take input from the console to write to clients. The clients can read from the server and ask it to send messages (which are also read from the console). There are three files : Maim.java (will be used for other purposes later; now is just boilerplate for the Server class) Host.java (server) Client.java