Windows Azure Conference 2014 Windows Azure Mobile Services from ground up.

Slides:



Advertisements
Similar presentations
Building Windows Store Apps with Windows Azure Mobile Services Name Title Organization.
Advertisements

Attie Naude 14 May 2013 Windows Azure Mobile Services.
Building Connected iOS Apps Chris Risner Technical Evangelist Microsoft
Windows Azure Mobile Services. Data Push Notifications Auth Scheduler Diagnostics & Scale Agenda.
WEB APPS LOGIC APPS MOBILE APPS App Service API APPS Fabrikam Kable 1. Customer books appointment 2. Customer valet assigns a technician.
Building Connected iOS Apps with Mobile Services Chris Risner Senior Technical Microsoft Azure.
| Basel Discovering Windows Azure Mobile Services and Media Services Ken Casada
Fraser Technical Solutions, LLC
.NET, Visual Studio, TFS + Git | Java, NodeJS, PHP, Python, Ruby, C++ Data SQL Databases NoSQL Tables Blob Storage HDInsight Window s Azure IaaS +
Esri UC 2014 | Demo Theater | Using ArcGIS for Server in the Microsoft Azure Cloud Nikhil Shampur.
Cross Platform Mobile Backend with Mobile Services James
OM. Brad Gall Senior Consultant
Building Android Apps with Mobile Services Speaker Name Speaker Title Speaker Company Twitter:
Building Android Apps with Windows Azure Mobile Services Chris Risner Technical Evangelist Microsoft
Developing Mobile Apps with Windows Azure Mobile Services Pongsakorn Poosankam Microsoft Innovation Center – Manager Microsoft (Thailand) Limited.
Your First Azure Application Michael Stiefel Reliable Software, Inc.
Building iOS Apps with Windows Azure Mobile Services Chris Risner Technical Evangelist Microsoft
Building Connected Android Apps Chris Risner Technical Evangelist Microsoft
Building Connected Android Apps with Azure Chris Risner Technical Evangelist
Building iOS Apps with Windows Azure Mobile Services Chris Risner Technical Evangelist Microsoft
Cloud Powered Android Apps in Minutes Chris Risner Senior Technical Microsoft Azure.
SDKs Source control, table scripts, custom API & Scheduler FacebookTwitterMicrosoftGoogle Active Directory SQL Table Storage Blob Storage WNS & MPNS.
Automating Operational and Management Tasks in Microsoft Operations Management Suite and Azure
Node.js & Windows Azure AZR326  JavaScript on the Server!  Event driven I/O server-side JavaScript  Not thread based, each connection uses only a.
Windows Azure Conference 2014 Caching Data in the Cloud with Windows Azure.
Building Connected iOS Apps With Mobile Services Chris Risner Senior Technical Microsoft Azure.
What’s New with Windows Server 2012 and Microsoft System Center 2012 SP1 Vijay Tewari Principal Group Program Manager Microsoft Corporation.
Sofia Event Center May 2014 Boris Simandoff, Product Chaos Group Mihail Mateev, Senior Technical Evangelist, Infragistics Inc. Node.js.
Building Windows Store Apps with Windows Azure Mobile Services Name Title Organization.
REST API Connected Apps Windows Store iOS Android Windows Phone 8 iOS Android HTML 5/JS.
Intro to Datazen.
WINDOWS AZURE MOBILE SERVICES AN INTRODUCTION Bret Stateham Technical Evangelist
COS308. SQL Azure Database DEMO.
Multi-Tier Apps with Admin Access, RDP, Custom Installs Modern Scalable Web Sites Full Windows Server/Linux VMs Web Sites Virtual Machines Cloud Services.
Building Windows Phone Apps with Mobile Services Speaker Name Speaker Title Speaker Company Twitter:
Building and Diagnosing Applications using Visual Studio and Azure SDK Paul Yuknewicz Principal PM Manager.
Azure in a Day Training: Windows Azure Module 1: Windows Azure Overview Module 2: Development Environment / Portal – DEMO: Signing up for Windows Azure.
Enabling the Cloud OS Today  New high-density Web Sites with elastic cloud scaling and complete dev-ops experiences  New rich IaaS experience for self-service.
PowerPoint Instructions These are not native PowerPoint objects. They are PNG objects. To change the color, you need to go to the Format Tab.
Building Connected Windows Store apps with Windows Azure Mobile Services Nick Harris Windows Azure Tech Evangelist Microsoft Corporation WCL217.
Mobile Services Recap Windows Azure Mobile Services.
Building Cross-Platform Apps with Windows Azure Mobile Services.
Inspirirani ljudima. Ugasite mobitele. Hvala.. Paolo Pialorsi Senior Consultant PiaSys ( Publishing apps for SharePoint 2013 on Microsoft.
Windows Azure and iOS Chris Risner Windows Azure Technical Evangelist Microsoft
Building Windows Store Apps with Windows Azure Mobile Services Nikola Metulev Windows Platform Technical Evangelist.
Building Azure Mobile Apps
Mobile Application Solution
Automate Custom Solutions Deployment on Office 365 and Azure
Lead SQL BankofAmerica Blog: SQLHarry.com
Windows Azure Mobile Services
Logo here Module 3 Microsoft Azure Web App. Logo here Module Overview Introduction to App Service Overview of Web Apps Hosting Web Applications in Azure.
Mobile Application Solution
Building Cross-Platform Apps with Windows Azure Mobile Services
Azure IaaS 101.
Building Windows Phone Apps with Windows Azure Mobile Services
PaaS - Development Stefan Geiger Gerry
Microsoft Ignite NZ October 2016 SKYCITY, Auckland.
12/2/ :59 AM AZR214 Developing Connected Windows Store Apps with Windows Azure Mobile Service: Overview (200) Nick Harris Sr. Technical.
12/5/ :36 AM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
TechEd /15/2019 8:08 PM © 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.
Technical Capabilities
Microsoft Azure Managing Users & Resources with Azure Resource Manager
Consumer Mobile Apps that Scale
5 Azure Services Every .NET Developer Needs to Know
SQL Server 2005 Reporting Services
Building Windows Store Apps with Windows Azure Mobile Services
Azure App Service Web App for Containers
Power BI Embedded for Fun and Profit
Presentation transcript:

Windows Azure Conference 2014 Windows Azure Mobile Services from ground up

Windows Azure Conference 2014 Building Apps Building Apps with mobile Service Data Storage Push Notifications Security and authentication Questions Agenda

What are we Building Apps for?

Windows Azure Conference 2014 Windows Azure Mobile Services

Windows Azure Conference 2014 Getting started with HTML / JS

Windows Azure Conference 2014 Powered by SQL Database Same DB – Multiple Mobile Services Data management in: – Windows Azure Portal – SQL Portal – SQL Management Studio – REST API – CLI Tools Structured Storage

Windows Azure Conference 2014 The REST API ActionHTTP VerbURL Suffix CreatePOST/TodoItem RetrieveGET/TodoItem?$filter=id%3D42 UpdatePATCH/TodoItem/id DeleteDELETE/TodoItem/id Data Operations and their REST Equivalents Base REST API Endpoint URL

Windows Azure Conference 2014 JSON to SQL Type Mappings JSON ValueT-SQL Type Numeric values (integer, decimal, floating point) Float BooleanBit DateTimeDateTimeOffset(3) StringNvarchar(max)

Windows Azure Conference 2014 Server Side Scripts Customizing data flow on the server

Windows Azure Conference 2014 Node Modules Extensibility through numerous modules

Windows Azure Conference 2014 Adding Server Logic

Windows Azure Conference 2014 Push Notifications Client (1) (2) (3)

Windows Azure Conference 2014 Pushing with Native

Windows Azure Conference 2014 User Authentication

Windows Azure Conference 2014 Table level permissions for each operation – Everyone – Anyone with the Application Key – Only Authenticated Users – Only Scripts and Admins User options in scripts – user.level (admin, authenticated, anonymous) – user.userId (provider:id or undefined) Data Authorization

Windows Azure Conference 2014 Adding Authentication with Xamarin

Windows Azure Conference 2014 Command Line Tools Scriptable control from PowerShell / Bash

Windows Azure Conference 2014 Using the CLI

Windows Azure Conference 2014 Execute scripts on a Schedule Execute scripts on demand Frequency and length of execution based off of service level Scheduler

Windows Azure Conference 2014 Non-table based scripts Accessible from: – Get – Post – Put – Patch – Delete Same permissions as Tables Custom API

Windows Azure Conference 2014 NPM Ability to use ‘npm install module’ to download NPM modules Currently accessible from Custom API only Script Source Control Shared Scripts Make scripts accessible from other scripts Like creating Node Modules Handled through Git repo Access to table, scheduler, custom API, shared scripts, and permissions

Windows Azure Conference 2014 Scheduler, Custom API, Script Source

Windows Azure Conference 2014 Diagnostics, Logging, Scale

Windows Azure Conference 2014 Service Scale Free 500K API calls per subscription per month Standard 1.5M API calls per unit per month Premium 15M API calls per unit per month

Windows Azure Conference 2014 Diagnostics, Logging, and Scale

Windows Azure Conference 2014 Preview Pricing $ Preview No availability SLA Shared (multitenant environment) Small instance is the only size available; multiple may be purchased First 10 Mobile Services are free, with no plans to start charging Reserved (private VM) Small instance is the only size available; multiple may be purchased Charge for Preview will be at the same reduced rate as Web Sites Up to 100 Mobile Services

Windows Azure Conference 2014 Mobile Services GA Pricing $ General Availability 99.9% FreeStandardPremium PriceFree Up to 10 services, Up to 100 Active Devices** $25 USD/mo (per unit**) $199 USD/mo (per unit**) API Calls500K (per subscription) 1.5M (per unit) 15M (per unit) ScaleN/AUp to 6 Standard units Up to 10 Enterprise units Scheduled JobsLimitedIncluded SQL Database (required) 20MB Included, Standard rates apply for more capacity 20MB Included, Standard rates apply for more capacity 20MB Included, Standard rates apply for more capacity

Windows Azure Conference 2014