locked
How to make chatting application in vb.net RRS feed

  • 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