Developer Docs

Adding websockets to a C#Bot application

Codebots currently has two bots, SpringBot and C#Bot, which both assist in creating full stack applications with a Spring Boot back-end and a C# .Net Core back-end respectively. Both these server-side languages have good support for websockets (or an abstraction over websockets) out of the box, here we will focus on adding a very simple chat example to a C#Bot project as C#Bot websocket support is provided through the use of the SignalR library which is included in .NET Core by default.

Creating a new application

We are going to begin by creating a new application on the Codebots Platform, a video of this process is shown below.

  1. First, select C#Bot and then name the application.
  2. Leaving the Entity diagram empty, select the UI diagram and add a page called Chat and drag on a Custom Area. This will allow us to add some client-side code later that will make a simple chat component which communicates over websockets.
  3. On the Security diagram, allow visitors to access the Chat page.
  4. Finally, hit ‘Build’ and let Codebots setup a git repository which produces a fully fledged C# .NET Core 5 (and a react client-side) project which can be cloned down and customised further.

    Creating a new C#Bot Application

Configuring the server-side

Now that we have a .Net Core project ready to go, we can leverage a tutorial from the official documentation on adding and configuring the SignalR library. The tutorial in the documentation applies to a generic .NET Core application and this example will be roughly following along with it, with more specific examples for using it inside a C#Bot project. Let’s get started and configure the server-side with the following steps:

  1. Add a Hubs folder in serverside/src
  2. Create a new file for our Hub, which will be responsible for handling the client-server websockets communication. As in the SignalR guide let’s call this ChatHub.cs :

     using Microsoft.AspNetCore.SignalR;
     using System.Threading.Tasks;
    	
     namespace [projectname].Hubs
     {
         public class ChatHub : Hub
         {
             public async Task SendMessage(string message)
             {
                 await Clients.All.SendAsync("ReceiveMessage", message);
             }
         }
     }
    
  3. In Startup.cs inside the ConfigureServices method we enable SignalR by:

     // % protected region % [Add extra startup methods here] on begin
     services.AddSignalR();
     // % protected region % [Add extra startup methods here] end
    
  4. In Startup.cs inside the Configure method modify the useEndpoints protected region to look like:

     // % protected region % [Configure endpoints here] on begin
         app.UseEndpoints(endpoints =>
         {
             endpoints.MapControllerRoute("default", "{controller}/{action=Index}/{id?}");
             endpoints.MapHealthChecks("/api/health");
             endpoints.MapHub<ChatHub>("/hub");
         });
     // % protected region % [Configure endpoints here] end
    
  5. Finally we make sure to import the Hub at the beginning of Startup.cs:

     // % protected region % [Add any extra imports here] on begin
     using [project name here].Hubs;
     // % protected region % [Add any extra imports here] end
    

It’s time to move onto the client-side configuration.

Configuring the client-side

  1. We start by including SignalR javascript library by running the following in the clientside folder of our project:

     `yarn add @microsoft/signalr`
    
  2. Next let’s create our simple chat react component which will:

  1. Now we want to add this component to the Chat page we added in the Codebots Platform earlier; located in clientside/src/Views/Pages/ChatPage.tsx.
    Let’s edit the protected region that was added in the ‘body-content’ section so that the code looks like:

     <div className="body-content">
         {
         // % protected region % [Add code for 5650d771-ea3b-4a1f-9283-14c496bf4d45 here] on begin
         <Chat/>
         }
         {
         // % protected region % [Add code for 5650d771-ea3b-4a1f-9283-14c496bf4d45 here] end
         }
     </div>
    
  2. Finally, don’t forget to add our import at the top of the ChatPage.tsx file:

     // % protected region % [Add any extra imports here] on begin
     import Chat from 'Views/Components/Chat/Chat';
     // % protected region % [Add any extra imports here] end
    

Demo time

Okay so now we have configured our server-side and client-side, let’s boot up our application and see our little chat demo in action. When we run our application and visit the home page we get the page shown in the demo below:

Demo

Let’s unpack what we have built:

Summary

It can be quite easy to leverage websockets to facilitate the communication between client and server to create interactive experiences for web applications. For .Net Core the SignalR library provides this support and makes setting this up for a C#Bot application a piece of cake.

Was this article helpful?

Thanks for your feedback!

If you would like to tell us more, please click on the link below to send us a message with more details.

Tool:

Generate

Iterate

Bot:

C#Bot

SpringBot

On this page

New to Codebots?

We know our software can be complicated, so we are always happy to have a chat if you have any questions.