Click here to Skip to main content
15,890,579 members
Everything / Chat

Chat

Chat

Great Reads

by Osman Kalache
An Enhanced Skype Chatter Bot, with a friendly user interface, programable knowledge base, testing interface with Export/Import knowledge base to files
by Intel
Train Large Language Models Quickly and Easily on Intel® Processors
by Houssem_Dellai
Developing the client and server side for a chat application.
by DotNetLead.com
How to build an OpenAI chat application using Angular, ASP.NET API, and Azure

Latest Articles

by Intel
Train Large Language Models Quickly and Easily on Intel® Processors
by DotNetLead.com
How to build an OpenAI chat application using Angular, ASP.NET API, and Azure
by Bill SerGio, The Infomercial King
How ChatGPT Can Grow Your Business
by Trapenok Victor
Using CppComet to create a simple chat. CppComet is open source comet server. It is written in C++.

All Articles

Sort by Updated

Chat 

18 Dec 2023 by Intel
Train Large Language Models Quickly and Easily on Intel® Processors
13 Oct 2023 by DotNetLead.com
How to build an OpenAI chat application using Angular, ASP.NET API, and Azure
29 Apr 2023 by Bill SerGio, The Infomercial King
How ChatGPT Can Grow Your Business
27 Dec 2022 by Shibiliya Ismail
I am building a chat interface in my laravel website. I get the following error in my chat page. GET http://127.0.0.1:8000/socket.io/?EIO=4&transport=polling&t=OLNuZgo 404 (Not Found) Here is my code : server.js var app =...
5 Dec 2022 by Trapenok Victor
Using CppComet to create a simple chat. CppComet is open source comet server. It is written in C++.
8 Jun 2022 by Tyrunt.new("Rix")
Hello, coding guys, So as you saw, loop() returns an: Uncaught (in promise) SyntaxError: Unexpected end of input (at script.js:6:107) And my code should perfectly run: document.chatWrapper = document.getElementById("chat") loopRun = true ...
8 Jun 2022 by Dave Kreskowiak
What on earth is this: document.chatWrapper.style.height = document.chatWrapper.style.minHeight = document.chatWrapper.style.maxHeight = new String(window.innerHeight - document.querySelectorAll("nav")[0].clientHeight) + "px" It makes no sense...
7 Jun 2022 by Richard Deeming
You need to remove the {"mode": "no-cors"} option from your fetch request. Request.mode - Web APIs | MDN[^]: no-cors ... In addition, JavaScript may not access any properties of the resulting Response. If you leave the mode as no-cors and...
7 Jun 2022 by Dave Kreskowiak
You're either missing a semicolon on a statement that requires it, or you've got mismatched double quote characters, parenthesis, square brackets, or curly braces. For example, you have an opening curly brace but no matching closing brace.
30 Mar 2022 by Dulguun Otgon
As a hobby project I'm thinking of building a web based chat aggregator with plugin system so that others can add more chat integration. At this point I have no idea what tech stack to use, what architecture should it have. Any advice would be...
30 Mar 2022 by Richard MacCutchan
Quote: I have no clue what to try first. Then you have a very long learning curve ahead of you. Two of the most common stacks for building web projects are ASP.NET | Open-source web framework for .NET[^] and PHP: Hypertext Preprocessor[^]. You...
3 Mar 2022 by Greg Utas
This is a major project, even for an experienced developer. The fact that you're asking this means that you need to gain more experience before undertaking a project of this magnitude. Furthermore, chatbots are an abomination, so I doubt you'll...
6 Feb 2022 by Member 15525124
heres the code im having problems with "...
6 Feb 2022 by Richard MacCutchan
The same issue as in your other question, the names you are using are not valid.
5 Feb 2022 by Richard MacCutchan
Your code is badly formed again:
4 Feb 2022 by OriginalGriff
See here: How to Make a Redirect in PHP[^]
19 Oct 2021 by Markyboy944
I am developing a microsoft bot, (currently using bot composer, which is linked to QnA maker). The bot will need to be visible on the main website (which is predominantly a store-front type website, showing various products, with each product...
10 Aug 2021 by Irfan Ghuori
I'm stuck in this project. How do I scroll down the chat room height after a new message? I've tried a lot of code but, I failed to get the right code. I upload an video for watch the problem i hope you understand it now What I have tried: ...
10 Aug 2021 by Chris Copeland
Richard is correct, the AJAX request you're performing seems to hit an API endpoint which produces the HTML content for the chat. What this doesn't do is give you any indication of whether a new message is present, how would your JS even know if...
26 Jul 2021 by Ridoh Set
Am learning java and was assigned to create a simple chat bot meant to give quick replies but when i pick say "1" meant for the third or fourth preset questions, i still get the first set of preset questions.i would also like to create answers...
24 Jul 2021 by Richard MacCutchan
I have no idea where you found that code, but wherever it is I suggest you never go there again. If you want to learn Java properly then go to the Java Tutorials Learning Paths[^].
24 Jul 2021 by OriginalGriff
That code won't even compile - which is probably why its doesn't work as expected! Unless your code compiles with no errors, it doesn't produce an executable file - so when you try to run the "latest code" what executes is the previous version...
19 Jun 2021 by Member 15245946
Hello, I am trying to make chat for two users(using select()), but i am stuck on this code: #include #include #include #include #include #include #include ...
19 Jun 2021 by Richard MacCutchan
As I told you yesterday you are referring to remoteportand localport, but you never initialise them to anything. Look at your main code: int main(int argc, char *argv[]){ int localport; int remoteport; int sock_fd; struct sockaddr_in...
28 Mar 2020 by KManishS
Dear Experts, I am looking for step by step guidance to achieve the following: I have created a chatbot using Microsft Chatbot Framework in VS2015 and tested it in botframework-emulator It is working fine. Now I want to embed it into a...
24 Feb 2020 by OriginalGriff
Google is your friend: Be nice and visit him often. He can answer questions a lot more quickly than posting them here... A very quick search using your subject as the search term gave some good starting points: how to add chatbot in to website...
8 Feb 2020 by Richard MacCutchan
Quote: Where can I find the necessary information It's called research: read books, use Google, take a class ...
7 Jan 2020 by dwk00
I created a TCP Audio Chat(Basic) ... It works for about 1 second, then it say buffer full I wish to use this as a tablet to front Door tablet Intercom Server WaveIn waveIn = new WaveIn(); // int deviceID = Cmb_InputDevices.SelectedIndex; waveIn.BufferMilliseconds = 50; waveIn.DeviceNumber =...
7 Jan 2020 by User 11060979
Based on the information you gave, it is hard to help. But anyway I see at least two problems: 1.) For audio streaming I would use UDP instead of TCP. 2.) Client 2.a) The while loop in your client is/can be a havy load for cpu, you should replace it by event based code. Means when something...
12 Jun 2019 by sukeshchand
Google hangout api is available, So is it possible to create a chat application based on the api to replace google hangout app? What I have tried: I have tried to use the api, but there is not much .net sample codes available in internet.
12 Jun 2019 by Nirav Prabtani
This is the only way to achieve your need ask to : Using the REST API  |  Hangouts Chat API  |  Google Developers[^]
15 Apr 2019 by Member 14219387
We've run into some issues on the first try (no documentation, a lot of dependencies, could not compile the sample app), so thought I'd ask for a second opinion. What I have tried: Looking for IOS/Android chat with features such as emojis, multimedia, read/writing status, notifications, etc.
15 Apr 2019 by megaadam
I am surprised what you say. I once wrote a simple chat bot for Telegram and found the documentation to be excellent at telegram.org I do not think they will provide any gui. So you must find or make one. Then you need to understand the web interface and integrate towards that. I say this with...
12 Apr 2019 by Member 14219387
Hi guys. Wanted to ask if anybody tried using Telegram or Twilllo chat platforms in your apps? What I have tried: We built a location-sharing social app with it's own simple chat. Our clients now want more chat features (emojis, multimedia, the message read/writing notifications, etc)....
12 Apr 2019 by Member 14219387
Good day, checking in if any feedback. Still looking for a solution.
11 Jan 2019 by RickZeeland
Here is an article to get you started: Building a Simple Chatbot from Scratch in Python (using NLTK)[^]
11 Jan 2019 by Sajid227
I have a project to build a customize web base chatbot , I know there are alot vendor that provide service for such kind of thing. But I want to know how we integrate my nlp solution building in Python on given dataset, to chatbox available on website , when user enter any query in that box and...
12 Dec 2018 by Afzaal Ahmad Zeeshan
I will not try to compare any frameworks but would share my own experience with the frameworks. I did some research when I was trying to develop a chat app, and so the following are what I found. Go with Node.js, and consider using Socket.io library. Socket.IO[^] is the library that allows you...
12 Dec 2018 by Member 14086811
To keep it short and simple, I'd like to create a VERY SIMPLE chat application. This application would allow two users to connect to a server and chat in real time, or connect and send messages even when the other person is offline. I'm aiming for something similar to Discord, and I'm wondering...
9 Oct 2018 by Member 13441472
please help me to implement chat functionality in my MVC 5 asp.net application. and client do not want to use signalR and any other third party frameworks. give me some ideas to implement or how can i start. thanku in advance What I have tried: i did't tried anything, i want to start from scratch
9 Oct 2018 by Vincent Maverick Durano
You would need to implement a JavaScript polling to ping your server within a given time. For example, you write a JavaScript function that performs an AJAX request to your server to fetch the data. You may need to use setInterval to ping your server every seconds. One example is this: ASP.NET...
7 Oct 2018 by F-ES Sitecore
I googled "asp.net chat application" and this was the first result https://pusher.com/tutorials/chat-aspnet/[^] I'm sure if you google yourself you'll find many more.
4 Sep 2018 by techies_first
Problem-- what are the tactic require to develop Chat bot using nodejs? can you tell me development charges/Infrastructure charges? How Much time iT will take for Develop Bot?Independently for fresher develop bot which is Link use/learn bot development? how do i get Hands-on experience to...
20 Jul 2018 by Richard MacCutchan
This question could have been answered quite easily by trying it for yourself, or even reading the documentation.
18 Jun 2018 by leowks
any kind souls can help me do a program if you have some spare free time?Chat Room System using Java for use in Eclipse later on.specs:- 1 server and multiple clients(limit to 3 and above) for chit chatting- server doing central control to accept or reject connection- each...
28 Dec 2017 by Member 13548483
Which programming languages should i learn and which frameworks shoul i use to make this website. Can I make this website in 10 days What I have tried: i know JS, jQuery, PHP and obviusly I know html and css
28 Dec 2017 by ZurdoDev
There is no way we can answer your question because we have no idea what you are capable of. Well, I suppose we have a little idea. The way you have asked this I would guess that no, you cannot do it in 10 days. And use any framework or language you like. It's your choice.
21 Dec 2017 by Member 13548483
How to make any online chat website using any JS framework. For example jQuery, node, vue, react. Which on of them is best to make this kind of website. And could you give me link about making this kind of website using one of these frameworks. PLS help me **PLease don't give link from github....
21 Dec 2017 by David_Wimbley
The scope of your question is beyond the purpose of this forum. You indicate you want to learn it but dont want a link to github. I would argue that a link to github that does the same exact thing is a way for you to learn. Reading other peoples code and seeing how they accomplished things is...
27 Oct 2017 by Member 13376650
Please look at this github that explains how to use ChatScript as a library inside a C/C++ program(only see Embedding step1 and 2): [^] As the tutorial says, I must do 2 calls. 1. InitSystem() function call to initialize the library. 2-performChat() function to pass a string to library and...
25 Oct 2017 by Richard MacCutchan
You need to include the library(s) that contain the code for those functions, which are merely defined in the header files. See the LDFLAGS entries in your Makefile for the required options. You also have the line void InitStandalone(); in your main function. Are you sure that is supposed to...
24 Oct 2017 by Member 13376650
I am trying to compile and test a simple code with ChatScript program.As the tutorial says here: [^] Quote: Embedding Step #1 First, you will need to modify common.h and compile the system. You need to add all the CS .cpp files to your build list. Find the // #define NOMAIN 1...
24 Oct 2017 by OriginalGriff
You need to go back to where you got the tutorial from: either you are missing important include files, or you are using the wrong compiler, or you just don't have all the source code. We can't tell - we don't even know where you got this from, so we can't even begin to help you! Talk to the...
8 Sep 2017 by Member 13400666
Sir, Your Java Chat Application Project is brilliant, but sir i am beginner in java so i can't understand the threading in your project, Sir explain me the project without threading same as it is with online server connection. What I have tried: Sir i have made Chat Application in Java which...
8 Sep 2017 by Dave Kreskowiak
Ummm... if you're talking about an article here on Code Project, this question belongs in the forum at the bottom of the article. Code Project is entirely supported by volunteers who write their own articles and support them. Code Project itself doesn't write the articles.
31 May 2017 by cobek
Hi all, I created a Simple Chat Application using WPF/WCF and I have doubts if I correctly implemented MVVM pattern in it. The main chat window has underlying view model which is assigned to window DataContext property (standard solution, I guess): class ChatWindowViewModel :...
31 May 2017 by Pete O'Hanlon
Some of what you have is moving towards the correct solution. However you veer suddenly off track when you introduce a hard-coupling in the code behind of the windows where you start to refer directly to methods and behaviours of the ViewModel. Part of the problem I think is that you have a...
15 May 2017 by OriginalGriff
Quote: If you send any code, please, instead of 'localhost' write 'sql104.rf.gd' as my hosting company uses a different mySQL server. We aren't here to do your work for you - and even if we were, you would be expected to be capable enough to make larger changes than that for yourself, without...
17 Apr 2017 by Anup KumarArya
all coding is correct. only i did change ip add and the important thing whenever you run a udp program just close firewall or any type of antivirus that is available in your system. Now it is working
17 Apr 2017 by Amlan Sengupta
I've created a simple chat bot using Microsoft QnA Maker cognitive service. Is there any parallel or alternative product available from any other vendor like facebook, google, IBM etc like QnA Maker service? What I have tried: I've created a simple chat bot using Microsoft QnA Maker cognitive...
17 Apr 2017 by Afzaal Ahmad Zeeshan
From my own experience, what I have learnt about Microsoft QnA generator is that it maps the input to a particular question, in your knowledge base. Your knowledge base is actually the list of questions, and answers that you want the application to learn from. They are simply, csvs, tsvs etc....
13 Apr 2017 by Senthil Mani A
ChatBot Application to get the current location of the user from Facebook Messenger using Microsoft Bot Framework
10 Apr 2017 by Anup KumarArya
First program which runs on my computer import java.io.*; import java.net.*; public class NewUDP22 /*main class*/ { public static void main(String arg[])throws Exception { /*calling both threads ReceiveDataClass and SendDataClass*/ ReceiveDataClass t=new...
10 Apr 2017 by Jochen Arndt
Your system sends to this address: InetSocketAddress sd=new InetSocketAddress("192.168.8.101",40000); The other system sends to: InetSocketAddress sd=new InetSocketAddress("192.168.8.101",50000); Did you see it now? The other systems sends the data to himself on port 50000. You have to specify...
17 Mar 2017 by Roshan Parmar
This article will guide you step by step on how to create a Proactive Bot with Microsoft Bot Framework.
6 Feb 2017 by decklon1
I'm building a private chat application using signalr and knockout js. I am able to list currently login users and i need to pop up a chat box when listed username is clicked.What I have tried:My pop up script looks like this function register_popup(id, name) { for...
11 Jan 2017 by Sem Shekhovtsov
Explaining the new Facebook messenger platform for developing chatbots, with a live example.
12 Oct 2016 by Bigprey
I have coded a chatroom using asp.net, C# & MS SQL. I have two Dropdowns for selecting Sports and then another for Sorting the chatrooms based on Users online/total users.When I select "All sports" (default value) and "Users online", the query works fine. But when I select "All sports"...
12 Oct 2016 by Suvendu Shekhar Giri
From the error, it looks like you are trying to access a value in the application from datarowview where the result of the shared query is stored but with wrong key.SELECT roo.[Sports] As Sport,......]The column is Sport but looks like you are trying to access with Sports and that's...
22 Jun 2016 by Member 12181103
ok so i have a problem where like that its working(on ipv4 address and local address):IPAddress ipaLocal = ipAddress;tlsClient = new TcpListener(1986);and like that its not working on ipv4 address: int port = 1986; IPAddress ipaLocal = ipAddress; tlsClient = new...
22 Jun 2016 by Member 12599256
only local address:var tcpListener = new TcpListener(IPAddress.Parse("127.0.0.1"), 1986);tcpListener.Start();or working on any IPv4 address:var tcpListener = new TcpListener(IPAddress.Any, 1986);tcpListener.Start();
14 Feb 2016 by Afzaal Ahmad Zeeshan
If you want to build an enterprise level of application such as a chat application, and that also supports FTP protocol (File transfer protocol[^]). The part to build the chatting application would be simple, just simple HTTP based text transfer to the hub and that can be overcome using...
14 Feb 2016 by Jithin Jithz
I Want a chat system with file transfer in c# .Net I tried lots of ariticles like http://www.codeproject.com/Articles/12893/TCP-IP-Chat-Application-Using-C but doesnot got the correct solution of the problem and little doubt about listening server and requesting clientWhat I have tried:I...
15 Jan 2016 by Member 12248413
I am trying to find a chat solution that I can place within a website hosted on a closed network. The requirements are:User logs into site via AD authenticationUser can select from other AD users to chat withVideo and file sharing would be optionsUsers cannot add external (non AD)...
6 Jan 2016 by CPallini
Do you mean something like jabberd[^]?
6 Jan 2016 by kubibay
Hi,We want to build a mobile chat application. So we will need an xmpp c# host application.Do you have any suggestions? I know agsxmpp-sdk but it is not free.
20 Dec 2015 by venkat28vk
Hi,I have developed a server and client code using tcp/ip protocol, which enables the client to send data to server and the same data is received from server to client. I would like to know how to keep the client open all the time, same like as server. I should not keep executing the...
18 Dec 2015 by Garth J Lancaster
surely that depends on YOU - what you you want/need to achieve in the client ? (we dont know your requirements because you havnt stated any)instead of str_echo(ls); you could do for (; ; ){ str_echo(ls); sleep(60 * 1000); // for example to sleep 1 minute between loops...
8 Dec 2015 by Abhinav S
SignalR can help you group / individual chats easily.Some examples -Asp.Net SignalR Chat Room[^]Chat Application using ASP.NET SignalR[^]
8 Dec 2015 by Member 10711621
I am working on a chat server implementing like chat.stackoverflow.com any one can provide me demo OR anyone can explain this link http://www.asp.net/signalr/overview/guide-to-the-api/working-with-groupsis the above link helpful to implement chat server like...
9 Nov 2015 by Krunal Rohit
This is forum and not a chat room. And as said by Joche, there's no general way to contact a specific user.There almost 70-80K people are online on CP, if you post your question, any of them would help you if he/she can.And you said you're under time pressure, so it may be urgent to you...
21 Oct 2015 by Richard MacCutchan
Sorry, but this site does not provide code to order.
15 Oct 2015 by Patrice T
Quote:what's wrong?The error message tells you What is the problemQuote:Could not connect to net.tcp://localhost:1234/Chat/ChatService.and whyQuote:No connection could be made because the target machine actively refused it 127.0.0.1:1234.Do you have a firewall ?Have you allowed...
15 Oct 2015 by amir.nazarizadeh
HiI have a simple chat program in c# with a client and a serverwhen I start the program it give me warning with this message:Additional information: Could not connect to net.tcp://localhost:1234/Chat/ChatService. The connection attempt lasted for a time span of 00:00:02.0986369. TCP...
22 Aug 2015 by F-ES Sitecore
You'll need to hire a shared server with a fixed IP address (a lot of web hosts will offer these). You need a domain registered such that it points to your server (say chat.yourdomain.com), your app needs to run on this machine listening to its given port, and your chat client needs to connect...
22 Aug 2015 by blitzkrieg89
I have created a chat application using TcpClient and TcpListener in Visual Studio.All works fine when I run the server on my computer.I want to host the server application online on the Internet, like GoDaddy.com, so that it can be accessed from anywhere.Is this possible? If not, any...
16 May 2015 by bluejesting
Hi there,Basically I have to design a chat room using UDP multicasting. (Assignment)Clients connect to the Server, sends messages to it, Server relays the message to all clients at once using multicasting. I've looked for examples and tutorials but haven't found anything that's been...
5 May 2015 by Abhinav S
Try the following -Chat Application using Web services in C#[^]How to create a video chat application in C#.Net?[^]
5 May 2015 by Member 11511835
how to develop video chat in asp.net c#? iam trying for that since 1week am not getting result. can any one help in developing in video chat application. pls help me.Thanks in advance.
17 Apr 2015 by JoCodes
Creating Simple Android Chat Bubble or Chat UI Layout
1 Feb 2015 by Aditya_Goud
How to Bind a List View's List Item Property, Here i m trying to have alternate row color , and alternate row left and right alignment (Chat App) , i m trying to use listbox .. is it correct ? how can i achieve this