Implementing a chat room using service Bus + SignalR

Source: Internet
Author: User

Before you practice this example, you need to have:
1 An Azure Account
2. A service bus has been created
3. Have permission to deploy to the cloud


1. Create an azure Cloud Service project



2. Select 1 webrole





3. Create a Hubs folder and ChatHub.cs:



public void Send (string name, String message)
{
Clients.All.broadcastMessage (name, message, Environment.MachineName, RoleEnvironment.CurrentRoleInstance.Id);
}


4. Install the required NuGet:


Microsoft ASP SignalR



SignalR Service Bus



5. Open home/index.cshtml


Add the following code (note your jquery and SIGNALR versions, and replace them accordingly):


@{Layout = null;} 







6. Open the Web. config and place the Servicebus connection string in the appsetting:


<add key= "servicebusconnectionstring" value= "Endpoint=sb://your string/; Sharedaccesskeyname=your key; Sharedaccesskey=your Key "/></appsettings>




7. Open App_star/starup.auth.cs


Add the following code:


GlobalHost.DependencyResolver.UseServiceBus (            cloudconfigurationmanager.getsetting (" Servicebusconnectionstring ")," Mychat ");            App. MAPSIGNALR ();




8. Publish your azurecloudservice to Azure.


Implementing a chat room using service Bus + SignalR

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.