Answered by:
How to make chatting application in vb.net

Question
-
Hey guys, i want to make chatting application in vb.net like whats app etc. But without a number or IP. With creating account and chatting with each other
thanks in advance!
i want it like this https://www.youtube.com/watch?v=bxD708U0DEs
but the prob that the link is broken
Saturday, October 1, 2016 3:50 PM
Answers
-
Hey guys, i want to make chatting application in vb.net like whats app etc. But without a number or IP. With creating account and chatting with each other
thanks in advance!
i want it like this https://www.youtube.com/watch?v=bxD708U0DEs
but the prob that the link is broken
You need to create two applications. One needs to be some form of web service to act as the central connection and relay point for your clients, and the other is the client itself.
For the server, an ASP.Net Web API project would probably be ideal and then your client can be a Windows Forms application which consumes the API. You can potentially use Azure to host the Web API application, here is an example.
This way the server provides a known endpoint for the clients to connect to and it can handle the authentication requirements as well as accepting messages from one client and delivering them to others.
Reed Kimble - "When you do things right, people won't be sure you've done anything at all"
- Proposed as answer by Neda Zhang Monday, October 10, 2016 9:17 AM
- Marked as answer by Neda Zhang Thursday, October 13, 2016 3:15 AM
Monday, October 3, 2016 1:05 AM
All replies
-
Take a look at SignalR
http://netinhand.blogspot.com/2013/11/signalr-20-vbnet-push-notification.html
Saturday, October 1, 2016 4:56 PM -
Following are few articles which may help, but code is in C#. You can use C# to VB.NET Converter
http://www.codeproject.com/Articles/429144/Simple-Instant-Messenger-with-SSL-Encryption-in-Cs
http://www.codeproject.com/Articles/19752/WCF-WPF-Chat-Applicationhttp://www.codeproject.com/Tips/607801/SimpleplusChatplusprogramplusinplusCGaurav Khanna | Microsoft MVP | Microsoft Community Contributor
Saturday, October 1, 2016 5:00 PM -
I want to make it in vb.net (Windows form app)
- Edited by MrChosenSecAcc Saturday, October 1, 2016 5:03 PM
Saturday, October 1, 2016 5:03 PM -
Try these
https://code.msdn.microsoft.com/windowsdesktop/Simple-Chat-Application-3f7f4ec5
http://www.codeproject.com/Articles/38914/A-TCP-IP-Chat-ProgramGaurav Khanna | Microsoft MVP | Microsoft Community Contributor
Saturday, October 1, 2016 5:08 PM -
I will try them all!
Thanks. please be here if i have any probs which mean still the question isnt answered!
thanks.
Saturday, October 1, 2016 5:38 PM -
Okay sadly, both gave me error or isnt familar to me if u have any another one then please send :)
THANKS
Saturday, October 1, 2016 5:53 PM -
Okay sadly, both gave me error or isnt familar to me if u have any another one then please send :)
THANKS
might be helpful if you provide something a little bit more specific about the error
Sunday, October 2, 2016 6:16 PM -
Okay sadly, both gave me error or isnt familar to me if u have any another one then please send :)
THANKS
Of course none of them will be familiar to you because they were written by people that understood them.
Which version of Visual Studio are you using and I mean type and year (i.e. Visual Studio Express for Desktop, 2008) or whatever?
Update: Although you will not understand the programs in this thread Using Multiple VS IDEs for Client/Server Project? which I provide links to the entire projects which can be downloaded if you have an acceptable version of Visual Studio you can dowloand the projects and build them and run them. It would be quite some time before you would understand them I believe. I don't even understand the TAP one.
La vida loca
- Edited by Mr. Monkeyboy Sunday, October 2, 2016 9:07 PM
Sunday, October 2, 2016 7:32 PM -
Hey guys, i want to make chatting application in vb.net like whats app etc. But without a number or IP. With creating account and chatting with each other
thanks in advance!
i want it like this https://www.youtube.com/watch?v=bxD708U0DEs
but the prob that the link is broken
You need to create two applications. One needs to be some form of web service to act as the central connection and relay point for your clients, and the other is the client itself.
For the server, an ASP.Net Web API project would probably be ideal and then your client can be a Windows Forms application which consumes the API. You can potentially use Azure to host the Web API application, here is an example.
This way the server provides a known endpoint for the clients to connect to and it can handle the authentication requirements as well as accepting messages from one client and delivering them to others.
Reed Kimble - "When you do things right, people won't be sure you've done anything at all"
- Proposed as answer by Neda Zhang Monday, October 10, 2016 9:17 AM
- Marked as answer by Neda Zhang Thursday, October 13, 2016 3:15 AM
Monday, October 3, 2016 1:05 AM