Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding a real time chat feature based on Azure Mobile Apps [closed]

I'm building a solution that is based on an Azure Mobile App (server side). I have 3 client applications (a ASP MVC web application, an Android App and an iOS app). The solution uses a custom authentication provider (token based authentication). I need to add a real time chat feature to it (two persons conversations).

For the mobile apps I think I'm going to work with Azure notification hub (send notification whenever a user sends a message to another) however I'm struggling to find a way to deal with the web frontend app.

Can you suggest some frameworks or tools that I can start with? Any help would be appreciated.

enter image description here

like image 443
Kira Avatar asked Jun 22 '16 09:06

Kira


People also ask

What developer and mobile tools is offered by Azure to create a mobile application?

Azure, Visual Studio, Xamarin, and Visual Studio App Center give you the flexible, yet robust tools and services to build, test, deploy, and continuously improve Android and iOS apps that your users will love.

What is an Azure mobile app?

Fully managed service that helps secure remote access to your virtual machines. Web Application Firewall. A cloud-native web application firewall (WAF) service that provides powerful protection for web apps. Azure Firewall. Cloud-native and intelligent network firewall security.

How do I host my Azure Mobile App?

Step 1: Go to the Azure portal using the below URL. Step 2: Select All services from the HomePage of the Azure portal. Step 3: Select Mobile from the All services Page. Step 4: From the Mobile section on the left side select App Services It will open a page to build and deploy mobile apps from the Azure portal.


Video Answer


1 Answers

This is the one you need: http://signalr.net/

You can use it for your mobile apps as well, there are xamarin components already built for it, for example. Some sample apps can be found https://github.com/SignalR/Samples

like image 73
Russell Young Avatar answered Sep 18 '22 06:09

Russell Young