Attie Naude 14 May 2013 Windows Azure Mobile Services.

Slides:



Advertisements
Similar presentations
Cross Platform Push with Azure
Advertisements

New Release Announcements and Product Roadmap Chris DiPierro, Director of Software Development April 9-11, 2014
Students: Ilya Paskhover, Alex Tarasiuk Supervisors: Simon Zeltser, Idan Sheinberg.
Windows Azure Mobile Services Matt Milner
Push to ALL the iPhones with Azure Chris Risner Senior Technical Microsoft Azure.
T Sponsors Sameer Chabungbam Principal Program Manager, Microsoft Connector API Apps BizTalk Summit 2015 – London ExCeL London | April 13th & 14th.
Microsoft Ignite /16/2017 4:11 PM
1 Trillion Azure AD authentications since the release of the service 50 M Office 365 users active every month >1 Billion authentications every.
WEB APPS LOGIC APPS MOBILE APPS App Service API APPS Fabrikam Kable 1. Customer books appointment 2. Customer valet assigns a technician.
| Basel Discovering Windows Azure Mobile Services and Media Services Ken Casada
Google App Engine Google APIs OAuth Facebook Graph API
Cross Platform Mobile Backend with Mobile Services James
Windows.Net Programming Series Preview. Course Schedule CourseDate Microsoft.Net Fundamentals 01/13/2014 Microsoft Windows/Web Fundamentals 01/20/2014.
Windows Azure Conference 2014 Windows Azure Mobile Services from ground up.
What is Cloud Computing? Cloud computing is the delivery of computing capabilities as a service, making access to IT resources like compute power, networking.
Lecture 8 – Platform as a Service. Introduction We have discussed the SPI model of Cloud Computing – IaaS – PaaS – SaaS.
Building Android Apps with Mobile Services Speaker Name Speaker Title Speaker Company Twitter:
Kirill Principal Lead Program Manager High Scale Cross Platform Push Notifications.
Building Connected Android Apps with Azure Chris Risner Technical Evangelist
Cloud Powered Android Apps in Minutes Chris Risner Senior Technical Microsoft Azure.
Windows 8 Application Microsoft Word with Apps For Office Internal O365 SharePoint Site Windows Azure Cloud Services Windows Azure Workflow Server.
Microsoft ® Official Course Module 13 Implementing Windows Azure Active Directory.
SDKs Source control, table scripts, custom API & Scheduler FacebookTwitterMicrosoftGoogle Active Directory SQL Table Storage Blob Storage WNS & MPNS.
Building Connected iOS Apps With Mobile Services Chris Risner Senior Technical Microsoft Azure.
Welcome to Azure App Services! Amie Seisay
I am familiar with Mobile Services Node.js Express ASP.NET Web API SQL Table Storage Blob Storage WNS APNS GCM Mongo DB Notification Hubs Source.
Trunica Inc. 500 East Kennedy Blvd #300 Tampa, FL Cross Platform Mobile Apps With Cordova and Visual Studio 2015 © Copyright 2015.
FCM Workflow using GCM.
WINDOWS AZURE MOBILE SERVICES AN INTRODUCTION Bret Stateham Technical Evangelist
Building Windows Phone Apps with Mobile Services Speaker Name Speaker Title Speaker Company Twitter:
Welcome to Azure App Services! Amie Seisay
Windows 8 Application Microsoft Word with an app for Office Internal O365 SharePoint Site Windows Azure Web Sites Windows Azure Workflow Service.
MGT305 - Application Management in Private and Public Clouds Sean Christensen Senior Product Marketing Manager Microsoft Corporation MGT305.
Building Connected Windows Store apps with Windows Azure Mobile Services Nick Harris Windows Azure Tech Evangelist Microsoft Corporation WCL217.
MGT305 - Application Management in Private and Public Clouds Daniel Savage Microsoft Corporation MGT305 Kenan Owens Microsoft Corporation.
Mobile Services Recap Windows Azure Mobile Services.
Windows Azure and iOS Chris Risner Windows Azure Technical Evangelist Microsoft
Bob German Principal Architect Future-Proof your SharePoint Customizations: Build 2010 Solutions that become 2013 Apps.
Building Windows Store Apps with Windows Azure Mobile Services Nikola Metulev Windows Platform Technical Evangelist.
Redmond Protocols Plugfest 2016 Tristan Davis Office Developer Platform Overview Principal Group Program Manager.
Software services delivering SharePoint, Mobile, and Business Intelligence solutions Creating mobile applications that integrate with SharePoint 2013 on-
Building Azure Mobile Apps
Mobile Application Solution
Сергей Байдачный Майкрософт Украина
Secure Mobile Apps in the Enterprise
Azure Mobile Services + Windows Phone 8
Mobile App Trends: lifecycle, functions, and cognitive
Windows Azure Mobile Services
6/17/ :27 AM BRK3341 Unlock extensibility by connecting your service to PowerApps and Microsoft Flow Theresa (Tessa) Palmer–Sr. Program Manager Sunay.
Platform as a Service.
The power of common identity across any cloud
Mobile Application Solution
Building Cross-Platform Apps with Windows Azure Mobile Services
Hybrid Apps: Azure Mobile Engagement and the App Economy
Building Windows Phone Apps with Windows Azure Mobile Services
PaaS - Development Stefan Geiger Gerry
Building Windows Phone 7 Applications with the Windows Azure Platform
12/7/2018 © 2014 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks and/or trademarks.
Integrating Hybrid Apps with Line of Business Apps
TechEd /28/ :27 AM © 2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered.
ASP.NET Module Subtitle.
TechEd /11/ :21 PM © 2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered.
TechEd /15/2019 8:08 PM © 2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks.
1/16/2019 8:14 PM SAC-863T Delivering notifications with the Windows Push Notification Service and Windows Azure Darren Louie, Nick Harris Program Manager,
TechEd /18/2019 2:30 AM © 2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks.
TechEd /18/ :01 AM © 2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered.
TechEd /22/2019 9:22 PM © 2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks.
Consumer Mobile Apps that Scale
Sessions about to start – Get your rig on!
Building Windows Store Apps with Windows Azure Mobile Services
Presentation transcript:

Attie Naude 14 May 2013 Windows Azure Mobile Services

Azure Mobile Services Overview 1.Authentication OAuth integration to well-known identity providers o Microsoft o Facebook o Twitter o Google 2.Data Services Easily provision tables and expose data 3.Push Notifications Send notifications to mobile apps without polling

Capabilities Simple provisioning and management of tables for storing app data. Integration with notification services to deliver push notifications to your app. Integration with well-known identity providers for authentication. Granular control for authorizing access to tables. Supports scripts to inject business logic into data access operations. Integration with other cloud services. Supports the ability to scale a mobile service instance. Service monitoring and logging.

AZURE MOBILE DATA SERVICES

Azure Mobile Data Services Dynamic data schema Allows rapid application development Exposes RESTful API Completely Cross-platform APIs for Win RT, Windows Phone, Android, iOS, Web All other platforms can use simple HTTP requests to manipulate data Allows for extension and customization via server-side JavaScript

Table Scripts JavaScript code executed on Insert, Update, Delete or Read Allows custom business logic to be added server-side Validation Data enrichment Authorization Auditing Push Notifications notifications via SendGrid Used in TechEd apps for Immediate Notifications

Validation

Authorization

Auditing

Data Enrichment

Scheduled Jobs Identical to table scripts, but runs periodically Used in TechEd apps for Future-dated announcements Upcoming session notifications (per user) Live tile updates (per user)

PUSH NOTIFICATIONS

Push Notifications Overview

Push Notification Libraries push.wns Windows Store Apps push.mpns Windows Phone Apps push.gcm Android Apps push.apns iOS Apps

Demo Creation of Mobile Service Creation of Tables Using Data API via Windows Store app Sending Push Notifications via Table Scripts Adding support for Push Notifications to Windows Phone app Sending Push Notifications via Scheduled Jobs