SlideShare a Scribd company logo
Building a cross-platform chat app
with Microsoft Azure Mobile
Services
14 may 2014, Timisoara
Timisoara .Net Meetup #1
Flavius Radu Demian
Software developer, Avaelgo
I really like programming, especially web and mobile
Please feel free to ask questions any time and don’t be shy
Knowledge is power 
flaviusdemian91@yahoo.com | flavius.demian@gmail.com | @slowarad
Expectations
Learn how to use mobile services
Learn when to use mobile services
Learn the strengths and limitations of mobile services
Learn that mobile services wants to be friend with everyone
Make you curious  => go home and play with it
Agenda
Overview
Storage
Custom API
Authentication & Authorization
Scheduler
Agenda
Diagnostics & Logging
Scale
Cool Third Party Add-Ons
Design of the chat app
Review
A visual representation
Overview
Mobile Services allows you to accelerate your mobile app
development by providing a turnkey way to structure storage,
authenticate users, and send push notifications.
With SDKs for Windows, Android, iOS, and HTML as well as a
powerful and flexible REST API, Mobile Services lets you to
build connected applications for any platform and deliver a
consistent experience across devices.
Overview
Clients for:
Windows Store, Windows Phone 8, iOS, Android, Javascript
You can add a cloud backend to your app in minutes without
the need for server code
The backend login can be written in node.js or c# (preview)
The SDK’s are open source (on github) , it’s integrated with GIT
Overview
Easily build a backend for mobile apps and not only
Easily manipulate data (filters)
Easily authenticate users
Send push notifications
Integrate your favorite services and great community
Server side logic
Node.js
Is a software platform for scalable server-side and networking
applications
Applications are written in JavaScript can be run within the
Node.js runtime on Windows, Mac OS X and Linux with no
changes
It is written in
Storage
Windows Azure SQL Database
Dynamic schema on/off
REST API generated per table -> Data centric platform
Access your data through :
Portal, SQL Management Studio, Rest API
Storage
JSON to SQL data types conversions
“Data Centric” Server Logic
Backend runs Node JS on small azure VM’s
“Interceptors” exposed for all CRUD requests to all tables
You get access to a predefined set of node modules :
request, console, push.*, tables, statusCodes, azure, mssql
Custom API
You can write your own API very easily and quickly
If you need you can add extra Node JS packages
exports.get = function(req, res) { /* code here */ }
exports.post = function(req, res) {/* code here */ }
Small demo time part 1
Login in the portal and create a mobile service
Set GIT credentials and get repository
Create some tables, show interceptors
Create a custom API
See list of predefined packages -> click here
Push notifications
The notification provider server maintains a "persistent IP
connection" with your device in order to deliver notifications
when the app needs to 'say' something to you.
Payload limited, specific to platform
The global push object is used to send push notifications
Success and Error callbacks are provided
Push notifications
Platform specific providers:
Push notifications overview
1) The app requests a channel from the
Notifications Provider
2) The app sends the channel url to
Mobile Services which stores it
3) When a notification is sent, Mobile
Services executes something like this:
push.mpns.send(channelUri….)
Windows Phone case study
4) The notification goes through the Notifications Provider which forwards it to the device
Authentication & Authorization
You can make provide quick auth in your app with
Facebook Twitter Google Microsoft
and Windows Azure Active Directory
Authorization
Table level authorization for CRUD operation
Everyone -> any request by anyone is accepted
Anyone with Application Key -> app key is sent on the request
distributed (default)
Authenticated Users -> users authenticated with one of the
mentioned identity providers
Authorization
Table level authorization for CRUD operation (*cont)
Scripts and Admins -> registers scripts or requests via the
master key
The application key is not secure and should not be used to
authenticate users of your app, especially in production
Scheduler
It runs jobs on simple or complex recurring schedules such as:
1) Send broadcast push notifications
2) Processing or resizing stored images
3) Invoking a Web Service over HTTP/s
4) Post a message to a Windows Azure Storage Queue, etc
Diagnostics and Logging
View diagnostics directly in the portal including :
1) API calls
2) CPU time
3) Data Out
LoggingConsole.* operations like console.log and console.error
provide an easy means to debug your server side scripts.
Scale
Compute - scale between shared and reserved mode
Increase/decrease your instance count
Storage ability to scale out your mobile service tenant(s) to a
dedicated SQL DB
Ability to scale up your SQL DB from web through business to
150GB. Since Microsoft Build it is up to 500GB .
Small demo time part 2
Push notifications
Authentication
Authorization
Diagnostics
Logging
Scale
Code cheat sheet - client
public MobileServiceClient MobileService = new MobileServiceClient(“dns”,“key");
public IMobileServiceTable<UserEntity> Users = App.MobileService.GetTable<UserEntity>();
public MobileServiceUser MobileServicesUser = await App.MobileService.LoginAsync(provider);
await UsersTable.InsertAsync(App.CurrentUser);
result = await App.MobileService.InvokeApiAsync<T>(“link”, HttpMethod.Get, extraParams);
App.MobileService.Logout();
Code cheat sheet – server (interceptor)
function insert(item, user, request) {
console.log("item is: " + JSON.stringify(item));
var sql = "SELECT name FROM UserEntity WHERE providerIdLong = ? AND identityProvider = ?";
mssql.query(sql, [item.providerIdLong, item.identityProvider], {
success: function(results) {
if( results.length == 0){
results = null;
}
completeUserProfile(item, user, request, results);
},
error: function(err) {
request.respond(statusCodes.BAD_REQUEST, { message: err });
}
});
}
Code cheat sheet – server (Api)
exports.get = function(req, res) {
var userTable = req.service.tables.getTable('userEntity');
var userToExclude = req.query.userId;
userTable.read({
success: function (items) {
if (items.length > 0) {
var finalResults = [], currentEntry = null;
items.forEach(function(item) {
if( item.providerIdLong != userToExclude){
currentEntry = new Object(); currentEntry.name = item.name;
finalResults.push(currentEntry);
}
});
res.send(statusCodes.OK, finalResults);
} }
}); };
Code cheat sheet – server (push)
if (entry.deviceType === "Android") //Android
{
var payload = new Object();
payload.content = item.content;
payload.fromId = item.fromId;
payload.fromPicture = item.fromPicture;
payload.fromName = item.fromName;
push.gcm.send(entry.registrationId, JSON.stringify(payload), {
success: function(response) {
console.log('Android Push notification sent: ', response);
}, error: function(error) {
console.log('Android Error sending push notification android: ', error);
}
});
}
Cool Third Party Add-Ons
Real time communication Emails SMS
Let’s talk about the chat app
Design - Functionalities
Integrate Microsoft Azure Mobile Services
Integrate with social media providers
Store data to cloud after auth ( user and channel related data )
Retrieve the rest of the users you can talk to (custom API)
Send message functionality
Receive message functionality
Logout functionality
Design – send push to web
Design - Database
Tables: users, channels, messages
Channel
ChannelUri
RegistrationId
UserProviderId
DeviceType
Message
FromId
ToId
DeviceType
FromName
FromPicture
User
ProviderId
Name
Picture
AccessToken
AccessTokenSecret
Let’s show some code
But first let’s see a short teaser
Review of Azure Mobile Services
Create a scalable and secure backend for your Windows, Android
and iOS apps
Store data in the cloud
Easily authenticate users
Send push notifications
Review of Azure Mobile Services
Consume your favorite services
Monitor, alert, and auto scale
Cheap and FREE in some cases -> click here
Preview: No availability Service Level Agreement
Paid: General Availability: 99.9%
Thanks
Any questions?

More Related Content

PPTX
Building a chat app with windows azure mobile
PPTX
Building a chat app with windows azure mobile services
PPTX
Azure Mobile Services
PPTX
Azure Summit BR 2014 - Mobile Services - Adicione Serviços para suas Aplicaçõ...
PPTX
Azure Mobile Service - Techdays 2014
PDF
SPUnite17 Who Are You and What Do You Want
PPTX
Deep dive into Salesforce Connected App
PDF
Vaadin codemotion 2014
Building a chat app with windows azure mobile
Building a chat app with windows azure mobile services
Azure Mobile Services
Azure Summit BR 2014 - Mobile Services - Adicione Serviços para suas Aplicaçõ...
Azure Mobile Service - Techdays 2014
SPUnite17 Who Are You and What Do You Want
Deep dive into Salesforce Connected App
Vaadin codemotion 2014

What's hot (19)

PPTX
20140424 Android / iOS 개발자를 위한 Microsoft BaaS 세미나
PDF
Rhinos have tea_on_azure
PDF
Migrating Legacy On-Premise Applications to SharePoint Online and Windows Azure
PDF
Yelowsoft Features paper
PPT
Building On Demand Apps On Force.com
PPTX
Aws meetup systems_manager
PPTX
IBM Single Sign-On
PDF
Web Application Architecture: Everything You Need to Know About
PDF
Vaadin NYC Meetup
PPT
Google App Engine - Overview #1
PDF
O365Con18 - Connect SharePoint Framework Solutions to API's secured with Azur...
PPTX
Build 2017 - B8099 - What's new in Xamarin.Forms
PPTX
Windows 8 programming with html and java script
PPTX
Revised Adf security in a project centric environment
DOCX
How DotNet, SharePoint, and Azure helps to build a Custom Web Application wi...
PPTX
Securing SharePoint Apps with OAuth
PDF
Android sync adapter
PDF
Introduction to Azure Web Applications
PPTX
Brewing Beer with Windows Azure
20140424 Android / iOS 개발자를 위한 Microsoft BaaS 세미나
Rhinos have tea_on_azure
Migrating Legacy On-Premise Applications to SharePoint Online and Windows Azure
Yelowsoft Features paper
Building On Demand Apps On Force.com
Aws meetup systems_manager
IBM Single Sign-On
Web Application Architecture: Everything You Need to Know About
Vaadin NYC Meetup
Google App Engine - Overview #1
O365Con18 - Connect SharePoint Framework Solutions to API's secured with Azur...
Build 2017 - B8099 - What's new in Xamarin.Forms
Windows 8 programming with html and java script
Revised Adf security in a project centric environment
How DotNet, SharePoint, and Azure helps to build a Custom Web Application wi...
Securing SharePoint Apps with OAuth
Android sync adapter
Introduction to Azure Web Applications
Brewing Beer with Windows Azure
Ad

Similar to Building a chat app with windows azure mobile (20)

PPTX
Azure Mobile Services for Cross Platform Mobile Apps
PPTX
Cloud Powered Mobile Apps with Azure
PPTX
Windows azure mobile services from start to rest
PPTX
Windows azure mobile services and windows phone 8
PPTX
Meteor Meet-up San Diego December 2014
PDF
Microsoft graph and power platform champ
PPTX
Develop iOS and Android apps with SharePoint/Office 365
PPTX
Pune microsoft azure developers 2nd meetup
PDF
Global Windows Azure Bootcamp : Cedric Derue Rhinos have tea on azure. (spons...
PPTX
CTU June 2011 - Windows Azure App Fabric
PPT
Windows Azure for .NET Developers
PPTX
Stephane Lapointe, Frank Boucher & Alexandre Brisebois: Les micro-services et...
PPTX
Cloud Powered Mobile Apps with Azure
PPTX
2015.04.23 Azure Mobile Services
PPTX
Cnam cours azure zecloud mobile services
DOC
Karthikeyan_Resume
PPTX
Windows Azure Mobile Services
PPTX
Vijay Oscon
PPTX
Azure Mobile Services Workshop
PDF
Pragatheswarakumar_v1.0
Azure Mobile Services for Cross Platform Mobile Apps
Cloud Powered Mobile Apps with Azure
Windows azure mobile services from start to rest
Windows azure mobile services and windows phone 8
Meteor Meet-up San Diego December 2014
Microsoft graph and power platform champ
Develop iOS and Android apps with SharePoint/Office 365
Pune microsoft azure developers 2nd meetup
Global Windows Azure Bootcamp : Cedric Derue Rhinos have tea on azure. (spons...
CTU June 2011 - Windows Azure App Fabric
Windows Azure for .NET Developers
Stephane Lapointe, Frank Boucher & Alexandre Brisebois: Les micro-services et...
Cloud Powered Mobile Apps with Azure
2015.04.23 Azure Mobile Services
Cnam cours azure zecloud mobile services
Karthikeyan_Resume
Windows Azure Mobile Services
Vijay Oscon
Azure Mobile Services Workshop
Pragatheswarakumar_v1.0
Ad

More from Flavius-Radu Demian (8)

PDF
Mobile growth with Xamarin
PPTX
MVVM frameworks - MvvmCross
PPTX
C# everywhere - Building Cross-Platform Apps with Xamarin and MvvmCross
PPTX
C# everywhere - Building Cross-Platform Apps with Xamarin and MvvmCross
PDF
ALM on the shoulders of Giants - Visual Studio Online
PPTX
Universal apps
PPTX
Security in windows azure
PPTX
Fundaments of Knockout js
Mobile growth with Xamarin
MVVM frameworks - MvvmCross
C# everywhere - Building Cross-Platform Apps with Xamarin and MvvmCross
C# everywhere - Building Cross-Platform Apps with Xamarin and MvvmCross
ALM on the shoulders of Giants - Visual Studio Online
Universal apps
Security in windows azure
Fundaments of Knockout js

Recently uploaded (20)

PPTX
ISO 45001 Occupational Health and Safety Management System
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PDF
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
PPTX
Transform Your Business with a Software ERP System
PPTX
history of c programming in notes for students .pptx
PDF
top salesforce developer skills in 2025.pdf
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PPTX
ai tools demonstartion for schools and inter college
PDF
Understanding Forklifts - TECH EHS Solution
PPTX
Introduction to Artificial Intelligence
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
medical staffing services at VALiNTRY
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
ISO 45001 Occupational Health and Safety Management System
How to Migrate SBCGlobal Email to Yahoo Easily
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
Transform Your Business with a Software ERP System
history of c programming in notes for students .pptx
top salesforce developer skills in 2025.pdf
CHAPTER 2 - PM Management and IT Context
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
VVF-Customer-Presentation2025-Ver1.9.pptx
ai tools demonstartion for schools and inter college
Understanding Forklifts - TECH EHS Solution
Introduction to Artificial Intelligence
Adobe Illustrator 28.6 Crack My Vision of Vector Design
2025 Textile ERP Trends: SAP, Odoo & Oracle
Which alternative to Crystal Reports is best for small or large businesses.pdf
medical staffing services at VALiNTRY
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
How to Choose the Right IT Partner for Your Business in Malaysia

Building a chat app with windows azure mobile

  • 1. Building a cross-platform chat app with Microsoft Azure Mobile Services 14 may 2014, Timisoara Timisoara .Net Meetup #1
  • 2. Flavius Radu Demian Software developer, Avaelgo I really like programming, especially web and mobile Please feel free to ask questions any time and don’t be shy Knowledge is power  flaviusdemian91@yahoo.com | flavius.demian@gmail.com | @slowarad
  • 3. Expectations Learn how to use mobile services Learn when to use mobile services Learn the strengths and limitations of mobile services Learn that mobile services wants to be friend with everyone Make you curious  => go home and play with it
  • 5. Agenda Diagnostics & Logging Scale Cool Third Party Add-Ons Design of the chat app Review
  • 7. Overview Mobile Services allows you to accelerate your mobile app development by providing a turnkey way to structure storage, authenticate users, and send push notifications. With SDKs for Windows, Android, iOS, and HTML as well as a powerful and flexible REST API, Mobile Services lets you to build connected applications for any platform and deliver a consistent experience across devices.
  • 8. Overview Clients for: Windows Store, Windows Phone 8, iOS, Android, Javascript You can add a cloud backend to your app in minutes without the need for server code The backend login can be written in node.js or c# (preview) The SDK’s are open source (on github) , it’s integrated with GIT
  • 9. Overview Easily build a backend for mobile apps and not only Easily manipulate data (filters) Easily authenticate users Send push notifications Integrate your favorite services and great community
  • 10. Server side logic Node.js Is a software platform for scalable server-side and networking applications Applications are written in JavaScript can be run within the Node.js runtime on Windows, Mac OS X and Linux with no changes It is written in
  • 11. Storage Windows Azure SQL Database Dynamic schema on/off REST API generated per table -> Data centric platform Access your data through : Portal, SQL Management Studio, Rest API
  • 12. Storage JSON to SQL data types conversions
  • 13. “Data Centric” Server Logic Backend runs Node JS on small azure VM’s “Interceptors” exposed for all CRUD requests to all tables You get access to a predefined set of node modules : request, console, push.*, tables, statusCodes, azure, mssql
  • 14. Custom API You can write your own API very easily and quickly If you need you can add extra Node JS packages exports.get = function(req, res) { /* code here */ } exports.post = function(req, res) {/* code here */ }
  • 15. Small demo time part 1 Login in the portal and create a mobile service Set GIT credentials and get repository Create some tables, show interceptors Create a custom API See list of predefined packages -> click here
  • 16. Push notifications The notification provider server maintains a "persistent IP connection" with your device in order to deliver notifications when the app needs to 'say' something to you. Payload limited, specific to platform The global push object is used to send push notifications Success and Error callbacks are provided
  • 18. Push notifications overview 1) The app requests a channel from the Notifications Provider 2) The app sends the channel url to Mobile Services which stores it 3) When a notification is sent, Mobile Services executes something like this: push.mpns.send(channelUri….) Windows Phone case study 4) The notification goes through the Notifications Provider which forwards it to the device
  • 19. Authentication & Authorization You can make provide quick auth in your app with Facebook Twitter Google Microsoft and Windows Azure Active Directory
  • 20. Authorization Table level authorization for CRUD operation Everyone -> any request by anyone is accepted Anyone with Application Key -> app key is sent on the request distributed (default) Authenticated Users -> users authenticated with one of the mentioned identity providers
  • 21. Authorization Table level authorization for CRUD operation (*cont) Scripts and Admins -> registers scripts or requests via the master key The application key is not secure and should not be used to authenticate users of your app, especially in production
  • 22. Scheduler It runs jobs on simple or complex recurring schedules such as: 1) Send broadcast push notifications 2) Processing or resizing stored images 3) Invoking a Web Service over HTTP/s 4) Post a message to a Windows Azure Storage Queue, etc
  • 23. Diagnostics and Logging View diagnostics directly in the portal including : 1) API calls 2) CPU time 3) Data Out LoggingConsole.* operations like console.log and console.error provide an easy means to debug your server side scripts.
  • 24. Scale Compute - scale between shared and reserved mode Increase/decrease your instance count Storage ability to scale out your mobile service tenant(s) to a dedicated SQL DB Ability to scale up your SQL DB from web through business to 150GB. Since Microsoft Build it is up to 500GB .
  • 25. Small demo time part 2 Push notifications Authentication Authorization Diagnostics Logging Scale
  • 26. Code cheat sheet - client public MobileServiceClient MobileService = new MobileServiceClient(“dns”,“key"); public IMobileServiceTable<UserEntity> Users = App.MobileService.GetTable<UserEntity>(); public MobileServiceUser MobileServicesUser = await App.MobileService.LoginAsync(provider); await UsersTable.InsertAsync(App.CurrentUser); result = await App.MobileService.InvokeApiAsync<T>(“link”, HttpMethod.Get, extraParams); App.MobileService.Logout();
  • 27. Code cheat sheet – server (interceptor) function insert(item, user, request) { console.log("item is: " + JSON.stringify(item)); var sql = "SELECT name FROM UserEntity WHERE providerIdLong = ? AND identityProvider = ?"; mssql.query(sql, [item.providerIdLong, item.identityProvider], { success: function(results) { if( results.length == 0){ results = null; } completeUserProfile(item, user, request, results); }, error: function(err) { request.respond(statusCodes.BAD_REQUEST, { message: err }); } }); }
  • 28. Code cheat sheet – server (Api) exports.get = function(req, res) { var userTable = req.service.tables.getTable('userEntity'); var userToExclude = req.query.userId; userTable.read({ success: function (items) { if (items.length > 0) { var finalResults = [], currentEntry = null; items.forEach(function(item) { if( item.providerIdLong != userToExclude){ currentEntry = new Object(); currentEntry.name = item.name; finalResults.push(currentEntry); } }); res.send(statusCodes.OK, finalResults); } } }); };
  • 29. Code cheat sheet – server (push) if (entry.deviceType === "Android") //Android { var payload = new Object(); payload.content = item.content; payload.fromId = item.fromId; payload.fromPicture = item.fromPicture; payload.fromName = item.fromName; push.gcm.send(entry.registrationId, JSON.stringify(payload), { success: function(response) { console.log('Android Push notification sent: ', response); }, error: function(error) { console.log('Android Error sending push notification android: ', error); } }); }
  • 30. Cool Third Party Add-Ons Real time communication Emails SMS
  • 31. Let’s talk about the chat app
  • 32. Design - Functionalities Integrate Microsoft Azure Mobile Services Integrate with social media providers Store data to cloud after auth ( user and channel related data ) Retrieve the rest of the users you can talk to (custom API) Send message functionality Receive message functionality Logout functionality
  • 33. Design – send push to web
  • 34. Design - Database Tables: users, channels, messages Channel ChannelUri RegistrationId UserProviderId DeviceType Message FromId ToId DeviceType FromName FromPicture User ProviderId Name Picture AccessToken AccessTokenSecret
  • 35. Let’s show some code But first let’s see a short teaser
  • 36. Review of Azure Mobile Services Create a scalable and secure backend for your Windows, Android and iOS apps Store data in the cloud Easily authenticate users Send push notifications
  • 37. Review of Azure Mobile Services Consume your favorite services Monitor, alert, and auto scale Cheap and FREE in some cases -> click here Preview: No availability Service Level Agreement Paid: General Availability: 99.9%