Mobile Services

129
msdevcon.ru #msdevcon

description

Mobile Services. Paolo Salvatori Microsoft. Paolo Salvatori. Senior Program Manager Microsoft. Agenda. 1 st Hour: Introduction to Mobile Services (45 minutes ) General Architecture Management Portal REST API Break (15 minutes). why is mobile so important?. - PowerPoint PPT Presentation

Transcript of Mobile Services

Page 1: Mobile Services

msdevcon.ru #msdevcon

Page 2: Mobile Services

Mobile ServicesPaolo Salvatori

Microsoft

Page 3: Mobile Services

Paolo SalvatoriSenior Program Manager

Microsoft

Page 4: Mobile Services

Agenda 1st Hour: Introduction to Mobile Services (45 minutes)

General Architecture

Management Portal

REST API

Break (15 minutes)

Page 5: Mobile Services

why is mobile so important?

Page 6: Mobile Services

Enterprises want to manage internal mobile apps and consumer facing event- or product-specific mobile apps from the same portal as core LOB apps

Small Businesses require solutions that accelerate development time and decrease development costs.

Developers shouldn’t have to constantly reinvent the wheel and reproduce common backend functionality

Consumers expect a continuous experience across all devices

App DevelopmentChallenges

Page 7: Mobile Services

Windows Azure Mobile Services addresses each of those challenges.

Page 8: Mobile Services

Windows Azure Mobile

Services accelerates connected

client application development by

streamlining common backend tasks

like structuring storage,

authenticating users, and sending

push notifications.

Page 9: Mobile Services

Key Scenarios

Make your app engaging and dynamicPush notifications and Live Tiles is the premier way to engage your customers. Make your app engaging and dynamic using Mobile Services Push.

Rapid DevelopmentTime is money. Get your app up and running sooner when you use Mobile Services to configure a secure backend in less than five minutes.

Make your app socialWhether your customers use Google, Facebook, Twitter, or Microsoft Account, no matter what devices they run your app on, with Mobile Services you can makes your app social and personable fast.

Page 10: Mobile Services

3

Connected Apps

Windows Store iOSAndroid

Windows Phone 8iOSAndroidHTML 5/JS

Data in the Cloud

SQL Table Blob

User Authentication

Facebook Twitter Microsoft Google

Push Notifications

WNS & APNS GCMMPNS

SDKs

Server-Side

Scripts

&

Scheduler

Basic Features

Page 11: Mobile Services

Supported Platforms

iOSWindows 8Windows Phone 8 Android

HTML5 & Javascript

Page 12: Mobile Services

ArchitecturePo

rtal

Zumo Resource Provider

Zumo Mgmt DB Site 1

Zumo Runtim

e

SQL 1

Scheduler

RD

FE

Zumo AntaresStamp

Site 2 Site N

Azure SDK

3rd party SDKS

SQL 2 SQL N

Azu

re L

B\A

RR

App ScriptsWin8

Device

iPhone

Page 13: Mobile Services

Management Portal

Page 14: Mobile Services

Dashboard Quick glance

Displays relevant mobile service information, including the service URL, status, location, database and subscription

Usage Timeline: Displays a scalable chart of CPU time,

API calls and data reads over a specific period of time.

Usage Overview: Displays an overview of the total

compute time and storage used by this mobile service

Manage Keys Manage Keys

Delete Delete the Mobile Service

Page 15: Mobile Services

Data In Windows Azure Mobile Services, data

is stored in tables, which are maintained in the Windows Azure SQL Database that is associated with your mobile service.

Click the Create button to add a new table to your mobile service.

By default, you don’t need to predefine the schema of tables in your database.

Mobile Services automatically add columns to a table based on the data you insert. To change this dynamic schema behavior, use the Dynamic Schema setting on the Configure tab.

To browse data, manage permissions and indexes on tables, or add server scripts, click on a table in the list.

To delete a table, click to select a table row, and then click Delete.

Page 16: Mobile Services

Browse The Browse tab lets you

browse data rows in a selected table.

Click the forward and back arrows to navigate through multiple pages of data.

Click on table names in the left navigation bar to switch between tables.

Click on the large left arrow to go back to the Data tab.

Page 17: Mobile Services

Script Mobile Services enables you to register

JavaScript code to be executed by the service when an insert, update, delete, or read operation occurs against a specific table.

For each table there are 4 CRUD operations (insert, read, update, del)

These scripts provide the ability to inject business logic into table operation, stop an operation from taking place, change or enrich values supplied to the operation or change the results.

For authenticated clients, you can also perform user-specific authorizations based on the userId value of the supplied user object.

Page 18: Mobile Services

Columns To delete columns, click the column and

then click Delete.

To add additional columns to the table, simply send an insert request including the new properties from your app with dynamic schema enabled.

Once a column is created, its data type cannot be changed by Mobile Services.

Insert or update operations fail when the type of a property in the JSON object cannot be converted to the type of the equivalent column in the table.

You can improve the performance of queries by defining an index on the table.

To add a column to the index, select the column and click Set as Index.

Page 19: Mobile Services

Permissions Mobile Services enables you to set the

following permissions on table operations:

Everyone: request for the operation against the table is accepted. This option leaves your data wide-open for everyone to access.

Anybody with the Application Key: The application key is required to perform the operation. The application key is distributed with the application. Note: Because this key is not securely distributed, it cannot be considered a security token. To secure access to your mobile service data, you must instead authenticate users before accessing.

Only Authenticated Users: Only authenticated users are permitted to perform the operation. Scripts can be used to further restrict access to tables based on an authenticated user.

Only Scripts and Admins: The operation requires the service master key, which limits the operation only to registered scripts or to administrator accounts

Page 20: Mobile Services

Scheduler Mobile Services enables you to

register JavaScript code to be executed by the service either on a schedule that you define or on-demand from the Management Portal.

Removing duplicate records from a table.

Backing up a database.

Send a report via email.

When your mobile service runs in free mode, you can create only one scheduled job at a time; in reserved mode, you can create up to ten scheduled jobs at the same time.

Page 21: Mobile Services

Push Mobile Services can send push notifications to

your apps.

The way that you configure and send push notifications depends on your app.

You can send push notifications to the following applications:

Windows Store app by using the Windows Push Notification Service (WNS). To send push notifications to your app, you must configure your mobile service to work with WNS.

iPhone and iPad apps by using the Apple Push Notification Service (APNS). To send push notifications to your app, you must configure your mobile service to work with APNS. Do this by generating a special push notification certificate at the iOS Provisioning Portal

Android: You can send push notifications to Android apps by using the Google Cloud Messaging (GCM) service. To send push notifications to your app, you must configure your mobile service to work with GCM.

Windows Phone 8 app by using the Microsoft Push Notification Service (MPNS). Mobile Services does not require you to register your Windows Phone 8 app to send push notifications.

Page 22: Mobile Services

Identity Mobile Services integrates with the

following identity providers to make it easy to authenticate users from your app:

Microsoft Account Facebook login Twitter login Google login

To enable authentication, you must first register your app with one or more of these identity providers and then configure your mobile service.

You must also add authentication code to your app.

When a user login is authenticated by Mobile Services, the value of the userId property on the user object passed to server scripts is set to a value that uniquely identifies a user. This value can then be used to authorize access to data.

Page 23: Mobile Services

Configure You can directly access to

the database used by your mobile service just clicking the link.

You can change the database used by your mobile service to store data with a new or existing DB by clicking Change DB and select one of the following options.

Enable/disable dynamic schema.

In reserved mode, you can configure endpoint monitoring.

Page 24: Mobile Services

Scale On the Scale tab, you can scale

your mobile service by switching to reserved mode and adding role instances.

You can also scale the Windows Azure SQL Database instance used by the service.

Note: When you set the Mobile service mode to Reserved, all of your mobile services in the same region run in Reserved mode.

To estimate the cost required to scale your mobile service, see the Mobile Services Pricing Calculator.

Page 25: Mobile Services

Log Mobile Services writes system

and script errors to the log.

Click on a log entry to view details and copy to the clipboard.

Click the link in the Source column to directly jump to the script that generated the error.

Note: Existing log entries can be viewed in the Management Portal for 7 days.

Your registered server scripts can also write information directly to the log by using the console object.

Page 26: Mobile Services

DEMO

Create your first Mobile Service

Page 27: Mobile Services

REST API

Page 29: Mobile Services

Login Verb: POST URL: https://<service-name>.azure-mobile.net/login?mode=authenticationToken Uri Parameter: mode Request Headers:

Body: JSON object{"authenticationToken":“<authentication-provider-token>"} for Microsoft{“access_token":“<authentication-provider-token>"} for Facebook and Google

Response: JSON object{"user":{"userId":"<authentication-provider>:cb392ceae24a44408ed863482b20f274"}, "authenticationToken":"<mobile-service-authentication-token>"}

Request Header Required  Value

Accept No Set this header to application/json.

Content-Length Yes The length of the request body.

Content-Type No Set this header to application/json.

Page 30: Mobile Services

Query Records Verb: GET URL: https://<service_name>.azure-mobile.net/tables/<table_name> URI Parameters: $filter, $inlinecount, $orderby, $select, $skip, $top Request Headers:

Response: data in JSON format Samples:

GET https://plunko.azure-mobile.net/tables/todoitem GET https://plunko.azure-mobile.net/tables/todoitem/1 GET https://plunko.azure-mobile.net/tables/todoitem?$filter=(complete%20eq%20false) GET https://plunko.azure-mobile.net/tables/todoitem?$filter=(complete%20eq%20false)&$orderby=text

%20asc

Request Header Required  Value

Accept No Set this header to application/json.

X-zumo-application ConditionalThe application key of the mobile service. You must specify a valid application key when required to access the table operation. This is the default table operation access permission.

X-zumo-auth ConditionalThe service-generated authentication token for an authenticated user. You must specify a token for an authenticated user when required to access the table operation.

Page 31: Mobile Services

Insert Record Verb: POST URL: https://<service_name>.azure-mobile.net/tables/<table_name> Request Headers:

Body: new record in JSON format Response: The JSON representation of the inserted item, which includes the ID for

the item generated by the mobile service. Sample:

POST https://plunko.azure-mobile.net/tables/todoitem Body: {"text" : "Go to Las Vegas", "complete": false, "when" : "don't know"}

Request Header Required  Value

Accept No Set this header to application/json.

Content-Length Yes The length of the request body.

Content-Type No Set this header to application/json.

X-zumo-application Conditional The application key of the mobile service.

X-zumo-auth Conditional The service-generated authentication token for an authenticated user.

Page 32: Mobile Services

Update Record Verb: PATCH URL: https://<service_name>.azure-mobile.net/tables/<table_name>/<item_id> Request Headers:

Body: The updated values encoded in JSON format, along with the optional id value of the object.

Response: The JSON representation of the updated item Sample:

PATCH https://plunko.azure-mobile.net/tables/todoitem/1 Body: {"text" : "Go to Barcelona", "complete": false, "when" : "don't know"}

Request Header Required  Value

Accept No Set this header to application/json.

Content-Length Yes The length of the request body.

Content-Type No Set this header to application/json.

X-zumo-application Conditional The application key of the mobile service.

X-zumo-auth Conditional The service-generated authentication token for an authenticated user.

Page 33: Mobile Services

Delete Record Verb: DELETE URL: https://<service_name>.azure-mobile.net/tables/<table_name>/<item_id> Request Headers:

Body: none Response: none Sample:

DELETE https://plunko.azure-mobile.net/tables/todoitem/6

Request Header Required  Value

X-zumo-application Conditional The application key of the mobile service.

X-zumo-auth Conditional The service-generated authentication token for an authenticated user.

Page 34: Mobile Services

HttpClient and Mobile Servicesprivate async void btnSend_Click(object sender, EventArgs e){ try { var httpClient = new HttpClient(); var uri = new Uri("https://<your-mobile-service>.azure-mobile.net/tables/TodoItem"); httpClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json")); httpClient.DefaultRequestHeaders.Add("x-zumo-application", “<application-key>"); httpClient.DefaultRequestHeaders.Host = uri.Host;

var todoItem = new TodoItem {Text = txtText.Text, Complete = false}; var serializer = new DataContractJsonSerializer(typeof (TodoItem));

using (var stream = new MemoryStream()) { serializer.WriteObject(stream, todoItem); stream.Seek(0, SeekOrigin.Begin);

//use a Stream reader to construct the StringContent (Json) using (var reader = new StreamReader(stream)) { var response = await httpClient.PostAsync(uri, new StringContent(reader.ReadToEnd(), Encoding.UTF8, "application/json")); WriteToLog(response.IsSuccessStatusCode ? string.Format("Message <{0}> successfully inserted!", txtText.Text) : string.Format("HTTP Status: <{0}> Reason: <{1}>", response.StatusCode, response.ReasonPhrase)); } } } catch (Exception ex) { WriteToLog(ex.Message); }}

Page 35: Mobile Services

Break

Page 36: Mobile Services

Agenda 2nd Hour: Server Scripts (45 minutes)

Server script objects

Server script modules

Configure user authentication: Windows Live

Facebook

Twitter

Google

User object and integration with identity providers

Data validation and duplicate detection

Administer Mobile Services using Windows Azure Cross-Platform Command Line tool

Break (15 minutes)

Page 37: Mobile Services

Server Script Objects

Page 38: Mobile Services

ObjectsName Description

apns Provide functionality to send notifications to Apple Push Notification Service (APNS)

console Write information to Services logs

gcm Provide functionality to send notifications to Google Cloud Messaging (GCM)

mpns Provide functionality to send notifications to Microsoft Push Notification Service (MPNS)

mssql Provides functionality for working directly with tables in the SQL Database using Transact-SQL

push Provides access to objects that are used for sending push notifications to apps

Query Provides functionality for querying Windows Azure Mobile Services

Request Used to execute the requested operation and determine the response to the client

statusCodes Enumerates the supported HTTP status codes can be returned by Windows Azure Mobile Services

Table Provides functionality for working with specific tables (insert, del, update, where, take, select, etc.)

tables Provides functionality for working with specific tables as a Table object instance

User Represents the current requesting user.

wns Provide functionality to send notifications to Windows Notification Service (WNS)

Page 39: Mobile Services

Samples

console objectconsole.log("Inserting item '%j'.", item); // %j for 'JSON'

console.error("Operation failed: ", error);

mssql objectmssql.query('select * from orders where country = "Russia"', { success: function (results) { console.log(results); }});

Page 40: Mobile Services

SamplesQuery object: is passed to read scriptsfunction read(query, user, request) { query.where({ userId: user.userId }); request.execute();}

Request object: is passed to all scriptsrequest.execute(); //Executes the default behavior for the operationrequest.respond(); //Writes the default responserequest.respond(error); //Writes a response with the specified error

Page 41: Mobile Services

Samples

Tables and Table objects

function insert(item, user, request) { var addressTable = tables.getTable('address');

addressTable.where({userId: user.userId}).read({success: function (results) {

item.address = results.length > 0 ? results[0] :

'unknown'; request.execute(); } });}

Page 42: Mobile Services

Server Script Modules

Page 43: Mobile Services

ModulesName Descriptionazure Provides functionality to access Azure services (Blobs, Tables, Service Bus)request Sends HTTP requests to external web services, such as Twitter and Facebook.sendgrid Used to send email by using the Sendgrid email service.

util Provides useful methods like format, isDate, isArray, isError

xml2js XML to JavaScript object converter

js2xml JavaScript to XML object converter

xmlbuilder Can be used to create XML documents

sax A very simple tool to parse through an XML string

Page 44: Mobile Services

Samples

Request

var request = require('request');var url = 'https://api.twitter.com/1/users/show.json?screen_name=babosbird';

request(url, function(error, response, body) { if (error) { console.error(error); } else { var data = JSON.parse(body); console.log(data); }});

Page 45: Mobile Services

SamplesSendGrid

function sendEmail(text) { var sendgrid = new SendGrid('<user-name>', ('<password>'); sendgrid.send({ to: '[email protected]', from: ‘[email protected]', subject: ‘ACME Newsletter', text: text }, function (success, message) { // If the email failed to send, log it as an error so we can investigate if (!success) { console.error(message); } });}

Page 46: Mobile Services

Client Libraries

Page 47: Mobile Services

Portable Class Library The Portable Class Library project supports a subset of assemblies from the .NET

Framework, Silverlight, .NET for Windows Store apps, Windows Phone, and Xbox 360, and provides a Visual Studio template that you can use to build assemblies that run without modification on these platforms.

Mobile Services support the Portable Class Library model and this offers several advantages for developers, since they can now share the codebase of client applications between the different platforms.

The Portable Class Library needs a platform extension assembly (.Ext.dll) to work correctly.

We provide platform extension assemblies for: Windows Phone 7.5

Windows Phone 8

Windows Store apps.

Page 48: Mobile Services

Portable Class Library The Portable Class Library cannot contain all the classes of the managed clients for

all the platforms. Some functionality is only available on one platform, while other functionality differs

between platforms. Therefore, to be able to use the new Managed Client you also need a platform specific

assembly, which contains code to be able to use features available on that specific platform.

UI authentication is an example of a feature that works different on different platforms and is not portable.

For you as a developer this means you need two assemblies for your Windows Store App to use Mobile Services.

For Windows Phone there is an additional assembly which contains functionality which is not allowed in background agents (e.g. login)

Page 49: Mobile Services

Windows Store AppApp.xaml.csusing Microsoft.WindowsAzure.MobileServices;

sealed partial class App : Application{

// This MobileServiceClient must be configured to communicate with // your Mobile Service's url and application key. // The MobileServiceClient class provides basic access to Mobile Services.public static readonly MobileServiceClient MobileService = new MobileServiceClient("https://<your-mobile-service>.azure-mobile.net/", “XXXXXXXXXXXXXXXXXXXX");

}

Page 50: Mobile Services

Windows Store AppMainPage.xaml.csusing Microsoft.WindowsAzure.MobileServices;using Newtonsoft.Json;public class TodoItem { public int Id { get; set; } [JsonProperty(PropertyName = "text")] public string Text { get; set; } [JsonProperty(PropertyName = "complete")] public bool Complete { get; set; } }public sealed partial class MainPage : Page{ private MobileServiceCollection<TodoItem, TodoItem> items; // the IMobileServiceTable interface Provides operations on a table for a Mobile Service. private IMobileServiceTable<TodoItem> todoTable = App.MobileService.GetTable<TodoItem>(); private async void RefreshTodoItems() { // This code refreshes the entries in the list view by querying the TodoItems table. items = await todoTable .Where(todoItem => todoItem.Complete == false) .ToCollectionAsync(); }}

Page 51: Mobile Services

HttpMessageHandlers In the new version of the managed client, HttpMessageHandlers replace ServiceFilters.

The MobileServiceClient internally uses an instance of the HttpClient to send HTTP requests and receive HTTP responses to Mobile Services REST services.

In a managed client, HttpMessageHandlers can be used to intercept and handle outgoing requests to Mobile Services.

You can define one or more handlers for a a single MobileServiceClient.

Page 52: Mobile Services

Sample 1public class BusyHandler : DelegatingHandler{

private int callCount;private readonly Action<bool> busyIndicator;

public BusyHandler(Action<bool> busyIndicator){

this.busyIndicator = busyIndicator;}

protected override async Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken){

var outgoingCount = Interlocked.Increment(ref callCount);if (outgoingCount == 1){

busyIndicator(true);}

var response = await base.SendAsync(request, cancellationToken);

var incomingCount = Interlocked.Decrement(ref callCount);if (incomingCount == 0){

busyIndicator(false);}return response;

}}

Page 53: Mobile Services

Sample 2public class DebugHandler : DelegatingHandler{ // Sends an HTTP request to the inner handler to send the request to the server as an async operation protected override async Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) { if (request != null && request.Method == HttpMethod.Post && request.Content != null) { Debug.WriteLine("REQUEST: {0}", await request.Content.ReadAsStringAsync()); }

var response = await base.SendAsync(request, cancellationToken);

if (response != null && response.Content != null) { Debug.WriteLine("RESPONSE: {0}", await response.Content.ReadAsStringAsync()); } return response; }}

Page 54: Mobile Services

HTML 5 ClientHTML Page: inset the following script references<script src='//ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.1.min.js'></script>

<script src='https://<your-service-name>.azure-mobile.net/client/MobileServices.Web-1.0.0.min.js'></script>

JavaScript File// In the editor, open or create a JavaScript file, and add the following code that defines the // MobileServiceClient variable. Supply the application URL and application key from the mobile service in

// the MobileServiceClient constructor.

var client = new WindowsAzure.MobileServiceClient('https://<your-service-name>.azure-mobile.net/', ‘AppKey')

// You get a reference to a table by calling the getTable() function on the MobileServiceClient object

var todoItemTable = client.getTable('todoitem');

function refreshTodoItems() {

// Filter data by including a where clause in a query that returns all items whose complete field is equal to false

var query = todoItemTable.where({ complete: false });

// Reads all data from the table

query.read().then(function(todoItems) {

// Use jQuery and JavaScript to update controls on the page.

});

}

Page 55: Mobile Services

Authentication

Page 56: Mobile Services

Authentication Mobile Services integrates with the

following identity providers to make it easy to authenticate users from your app:

Microsoft Account Facebook login Twitter login Google login

To enable authentication, you must first register your app with one or more of these identity providers and then configure your mobile service.

You must also add authentication code to your app.

When a user login is authenticated by Mobile Services, the value of the userId property on the user object passed to server scripts is set to a value that uniquely identifies a user. This value can then be used to authorize access to data.

Page 57: Mobile Services

OAuth Authentication Flow

* By Carlos Figueira, see references

Page 58: Mobile Services

Windows Store Appsprivate static async System.Threading.Tasks.Task Authenticate()

{

while (App.MobileService.CurrentUser == null)

{

string message;

try

{

await App.MobileService.LoginAsync(MobileServiceAuthenticationProvider.Facebook);

message = string.Format("User successfully authenticated: UserId = {0}",

App.MobileService.CurrentUser.UserId);

}

catch (InvalidOperationException)

{

message = "Login failed!";

}

var messageDialog = new MessageDialog(message, "Login Status");

await messageDialog.ShowAsync();

}

}

Page 59: Mobile Services

Windows Phone 8 Appsprivate async Task Authenticate(){ while (user == null) { string message; try { user = await App.MobileService.LoginAsync(MobileServiceAuthenticationProvider.MicrosoftAccount); message = string.Format("You are now logged in - {0}", user.UserId); } catch (InvalidOperationException ex) { message = ex.Message; } MessageBox.Show(message); }}

Page 60: Mobile Services

HTML 5 App

HTML Page<div id="logged-out">You are not logged in.<button>Log in</button> <select id="authentication-providers"> <option selected="selected" value="MicrosoftAccount">Microsoft</option> <option>Twitter</option> <option>Facebook</option> <option>Google</option> </select></div>

Page 61: Mobile Services

HTML 5 App

JavaScript File

function logIn() {client.login($("#authentication-providers :selected") .val()) .done(refreshAuthDisplay, function (error) {

alert(error);});

}

function logOut() {client.logout();refreshAuthDisplay();$('#summary').html('<strong>You must login to access data.</strong>');

}

Page 62: Mobile Services

User Object// The User object which is passed to all scripts // has a function called getIdentities(), // which returns an object with provider-specific data// which can be used to query their user information.

// Facebook{ "facebook":{ "userId":"Facebook:<user-id>", "accessToken":“<access-token>" } }

// Microsoft:{ "microsoft":{ "userId":“MicrosoftAccount:<user-id>", "accessToken":“<access-token>" } }

//Google:

{

"google":{

"userId":"Google:<user-id>",

"accessToken":“<access-token>"

}

}

//And for Twitter:

{

"twitter":{

"userId":"Twitter:<user-id>",

"accessToken":“<access-token>",

"accessTokenSecret":“<access-token-secret>"

}

}

Page 63: Mobile Services

Get User Name (1/2)function getUserName() { // Set default name item.userName = '<unknown>';

// Get credentials for the authenticated user var identities = user.getIdentities(); var req = require('request'); var url;

// Create url to query the authentication provider for user name if (identities.microsoft) { url = 'https://apis.live.net/v5.0/me/?method=GET&access_token=' + identities.microsoft.accessToken; } else if (identities.facebook) { url = 'https://graph.facebook.com/me?access_token=' + identities.facebook.accessToken; } else if (identities.google) { url = 'https://www.googleapis.com/oauth2/v1/userinfo?access_token=' + identities.google.accessToken; } else if (identities.twitter) { url = 'https://api.twitter.com/1/users/show.json?user_id=' + user.userId.substring(user.userId.indexOf(':') + 1); }

Page 64: Mobile Services

Get User Name (1/2) // Call authentication provider if (url) { req(url, function (error, response, body) { if (error) { console.error('An error occurred while sending data to Facebook Graph API: ', error); } else { try { var data = JSON.parse(body); item.userName = data.name ? data.name : '<unknown>'; } catch (ex) { console.error('An error occurred while parsing response data from the auth provider: ', ex); } } if (f) { f(); } }); }}

Page 65: Mobile Services

Data Validation and Duplicate Detection

Page 66: Mobile Services

Data Validationfunction insert(item, user, request) { // Validation if (!item.text) { request.respond(statusCodes.BAD_REQUEST, "The text cannot be null"); return; }}

Page 67: Mobile Services

Duplicate Detectionfunction insert(item, user, request) { var todoItemTable = tables.getTable("TodoItem"); todoItemTable.where({userId: user.userId, text: item.text, complete: false}) .read({ success: function(results) { if (results && results.length > 0) { console.log("Duplicate detected: userId = [" + user.userId + "] text = [" + item.text + "]") request.respond(statusCodes.OK, results[0]); } else { request.execute(); } } });}

Page 68: Mobile Services

Authorizationfunction insert(item, user, request) { var permissionsTable = tables.getTable('permissions');

permissionsTable.where({ userId: user.userId, permission: 'submit order' }).read({ success: function (results) { if (results.length > 0) { // Permission record was found. Continue normal execution. request.execute(); } else { console.log('User %s attempted to submit an order without permissions.', user.userId); request.respond(statusCodes.FORBIDDEN, 'You do not have permission to submit orders.'); } } });}

Page 69: Mobile Services

Administer Mobile Services using Windows Azure Cross-Platform Command Line tool

Page 70: Mobile Services

CLIThis tool can be used on the following platforms:

Windows

Linux

Mac

Mobile Services can be managed using CLI

Page 71: Mobile Services

Agenda 3rd Hour: Push Notifications and integration with other services

Send push notifications using WNS and MPNS

Windows mobile and Windows Store Apps notifications

Invoke REST services via request Node.js module and HTTP protocol

Integrate Mobile Services with on-premises LOB applications: Via Service Bus Relay Services

Via Service Bus Queues, Topics and Subscriptions

Break (15 minutes)

Page 72: Mobile Services

Push Notifications

Page 73: Mobile Services

Push Mobile Services can send push notifications to

your apps.

The way that you configure and send push notifications depends on your app.

You can send push notifications to the following applications:

Windows Store app by using the Windows Push Notification Service (WNS). To send push notifications to your app, you must configure your mobile service to work with WNS.

iPhone and iPad apps by using the Apple Push Notification Service (APNS). To send push notifications to your app, you must configure your mobile service to work with APNS. Do this by generating a special push notification certificate at the iOS Provisioning Portal

Android: You can send push notifications to Android apps by using the Google Cloud Messaging (GCM) service. To send push notifications to your app, you must configure your mobile service to work with GCM.

Windows Phone 8 app by using the Microsoft Push Notification Service (MPNS). Mobile Services does not require you to register your Windows Phone 8 app to send push notifications.

Page 74: Mobile Services

Push Notifications

Page 75: Mobile Services

Windows Store Appprivate static async System.Threading.Tasks.Task AcquirePushChannel(){ // Create a channel to receive notifications var currentChannel = await PushNotificationChannelManager.CreatePushNotificationChannelForApplicationAsync(); var uriAsString = currentChannel.Uri; // Check if the channel already exists in the Channel table var channelTable = App.MobileService.GetTable<Channel>(); var enumerable = await channelTable. Where(c => c.Uri == uriAsString).ToEnumerableAsync(); if (enumerable.Any()) { // Exit if the channel already exists in the Channel table

return; } var channel = new Channel { Uri = currentChannel.Uri, Type = "WNS" }; await channelTable.InsertAsync(channel);}

Page 76: Mobile Services

Make your App Toast Capable To configure the

Windows Store App to receive push notifications, open the Package.appxmanifest file and make sure that in the Application UI tab, Toast capable is set to Yes

Page 77: Mobile Services

Windows Phone 8 Appprivate HttpNotificationChannel CurrentChannel;

private void AcquirePushChannel(){ CurrentChannel = HttpNotificationChannel.Find("MyPushChannel");

if (CurrentChannel == null) { CurrentChannel = new HttpNotificationChannel("MyPushChannel"); CurrentChannel.Open(); CurrentChannel.BindToShellTile(); CurrentChannel.BindToShellToast(); }

var channelTable = App.MobileService.GetTable<Channel>(); var channel = new Channel { Uri = CurrentChannel.ChannelUri.ToString() }; channelTable.InsertAsync(channel);}

Page 78: Mobile Services

Configure the AppTo configure the Windows Phone 8 App to receive push notifications, open the WMAppManifest.xml file and make sure that in the Capabilities tab, ID_CAP_PUSH_NOTIFICATION is checked.

Page 79: Mobile Services

Server Script Codefunction sendPushNotification() { var channelTable = tables.getTable('Channel'); channelTable.read({ success: function (channels) { channels.forEach(function (channel) { if (channel.type === "WNS") { push.wns.sendToastText02(channel.uri, { text1: "New Todo Item", text2: item.text}, {success: function (pushResponse) { console.log("Sent push:", pushResponse); } }); } if (channel.type === "MPNS") { push.mpns.sendToast(channel.uri, { text1: 'TodoList', text2: item.text }, { success: function (pushResponse) { console.log("Sent push:", pushResponse); } }); } }); } });}

Page 80: Mobile Services

DEMO

Push Notifications

Page 81: Mobile Services

Integrate Mobile Services with on-premises LOB applications

Page 82: Mobile Services

Hybrid Solutions In today’s IT landscape, it is not uncommon that data and

services used by a system are located in multiple application domains.

Resources may be stored in a corporate data center, while other services may be located across the organizational boundaries, in the cloud or in the data centers of business partners.

There are many reasons for requiring a hybrid approach to cloud applications:

Certain types of data come under national regulations which explicitly forbid data from being stored in another country.

Data may need to be shared locally with on –premise applications and services.

Page 83: Mobile Services

Windows Azure Service Bus The Windows Azure Service Bus is an Internet Service Bus that

offers secure, scalable and highly available connectivity and messaging capabilities.

The Service Bus is part of Windows Azure and is designed to provide connectivity, queuing, and routing capabilities that allow on-premises and cloud applications to exchange messages across the boundaries of logical and physical domains.

The Service Bus can be used as the foundation to create a new range of hybrid and distributed applications that span the cloud and corporate environments.

The Service Bus provides 2 messaging types:

Relayed Messaging

Brokered Messaging

Page 84: Mobile Services

Service Bus Relayed Messaging The Service Bus allows a WCF service to expose an

endpoint in a Windows Azure data center that can be accessed by consumer applications in a mediated and secure way using different transport protocols (TCP, HTTP/S) and message formats (SOAP and REST).

The relay service provides a rendezvous connection point in the cloud between the client application and the service provider.

Both the client and service can reside in the cloud or on-premises.

The Service Bus supports the WCF programming model and provides a rich set of bindings (BasicHttpRelayBinding, NetTcpRelayBinding, NetEventRelayBinding, etc.) to cover a wide variety of design patterns and Message Exchange Formats.

One-way communications

Publish/Subscribe

Peer-to-peer communications

Multicast messaging

Page 85: Mobile Services

Service Bus Brokered Messaging - Queues

Queues provide messaging capabilities that enable a large and heterogeneous class of applications running on premises or in the cloud to exchange messages in a secure and reliable fashion across trust boundaries.

Queues are based on a new messaging infrastructure backed by a replicated, durable store - up to 5GB per Queue.

The max message size is 256KB, but the session feature allows creating unlimited-size sequences of related messages.

Queues are available through a .NET API, WCF, HTTP/REST and AMQP Interfaces

Page 86: Mobile Services

Queues - Capabilities Session-based message correlation.

Message Scheduled Delivery.

Reliable delivery patterns via Peek/Lock Receive Mode.

Transactions support to ensure batches of messaging operations are committed atomically.

Detection of inbound message duplicates, allowing clients to send the same message multiple times without adverse consequences (Idem-potency).

Dead-letter facility for messages that cannot be processed or expire before being received.

Deferring messages for later processing.

Page 87: Mobile Services

Queues - Scenarios Loosely-Coupled Asynchronous Communication allows to establish an

asynchronous and loosely-coupled communication between autonomous systems that run in different application domains, on-premises or in the cloud.

Load Leveling allows to flatten a highly-variable traffic into a predictable stream of work.

Load Balancing allows to distribute the load across a set of worker processes which size can vary dynamically to accommodate the incoming message volume.

In a Competing Consumers scenario, when a publisher writes a message to a queue, multiple consumers compete with each other to receive the message, but only one of them will receive and process the message in question.

Temporal Decoupling allows to work on independent schedules. The producers and consumers are not required to be online at the same time. This allows to publish messages to workers that are temporarily offline.

Page 88: Mobile Services

Service Bus Brokered Messaging - Topics

Topics provide all the Features of Queues + Publish/Subscribe capabilities.

A Topic consists of a sequential message store just like a Queue, but it supports up to 2000 concurrent and durable subscriptions

Each Subscription is a virtual queue getting message copies

A Subscription may have a single consumer that gets all the messages or a set of competing consumers that fetch messages on a first-come-first-served basis.

Subscriptions can have filters expressions and filter actions

Page 89: Mobile Services

Topics - ScenariosPublish Events to many subscribersEach subscription can be shared by a set of competing consumers

Secondary subscriptions can be used for auditing purposes.

Distribute workload across partitioned pools of workers, each defined by a different subscription

Decoupled message fan-out scenario to send messages to many consumers requiring the same information

As the foundation in event-driven architecture implementations

Page 90: Mobile Services

Topics – Rules & Filters

Rules: Rules select messages based on conditions

defined on system or application-specific properties

Topics support more than one rule for each subscription

Filter Conditions and Actions: Conditions are represented by filter expressions

expressed in SQL’92 syntax: ShipCountry=“Russia” AND ShipCity=“Moscow”

Actions are expressed by action expressions and can add and modify message properties during retrieval

Set Priority='High';Set Severity=1

Page 91: Mobile Services

Messages Messages are modeled by the BrokeredMessage class

Messages can have user-defined: Time-To-Live periods (with no enforced maximum lifetime)

Lock duration

Duplicate detection history time

Messages expose the following properties: MessageId that can be used for duplicate detection

CorrelationId to correlate a message to a specific request

SessionId for session-enabled communication

ReplyTo that can be used to implement a request-reply MEP.

Label for custom use

User defined properties are key/value pairs

Brokered messaging properties are not SOAP headers

Page 92: Mobile Services

DEMO

Service Bus Explorer

Page 93: Mobile Services

How to call a Service Bus relay service (1/3)function getUserAddress(f) { // Set default value item.userAddress = '<unknown>';

// Create the SOAP Envelope var body = '<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">' + '<s:Body>' + '<user xmlns="http://windowsazure.cat.microsoft.com/samples/mobileservices">' + '<userId>' + user.userId + '</userId>' + '</user>' + '</s:Body>' + '</s:Envelope>';

// Import the request module var req = require('request');

* You can the xmlbuilder, sax and js2xml Node.js modules to create the SOAP message

Page 94: Mobile Services

How to call a Service Bus relay service (2/3) // Create call options var options = { method: 'POST', url: 'http://paolosalvatori.servicebus.windows.net/basichttp/todoitem', headers: { 'Content-Type': 'text/xml', 'SOAPAction': 'GetUserAddress' }, body: body };

// Call the Service Bus Relay Service req(options, function(error, response, body) { if (error) { console.log('An error occurred while invoking the service: ', error); } else { // Import xml2js module var xml2js = require('xml2js'); // Create a xml2js parser var parser = new xml2js.Parser();

Page 95: Mobile Services

How to call a Service Bus relay service (3/3)

// Parse the SOAP envelope of the response from XML to JSON parser.parseString(body, function (err, result) { try { // Read the address from the JSON object var address = result["s:Envelope"]["s:Body"][0]["userAddress"][0]["text"][0]; if (address) { // Set the userAddress property of the item item.userAddress = address; } } catch (ex) { // Log the error console.log("An error occurred while parsing the response: ", error); } }); if (f) { // Invoke a continuation function, if any f(); } } });}

Page 96: Mobile Services

How to use Send a message to queue (1/2)function sendMessageToServiceBus() { // Import the azure module var azure = require('azure');

// Create a ServiceBusService object var serviceBusService = azure.createServiceBusService('<your-service-bus-namespace-name>', '<your-service-bus-namespace-key>');

// Define queue options var queueOptions = { EnableBatchedOperations: true, RequiresDuplicateDetection: true, DuplicateDetectionHistoryTimeWindow: 'PT8H' };

Page 97: Mobile Services

How to use Send a message to queue (2/2) // Create queue if it does not exist serviceBusService.createQueueIfNotExists('mobileservices/todoitem', queueOptions, function (error) { if (error) { console.error("An error occurred creating/accessing the Service Bus queue: ", error); } else { // Create a message var message = { body: 'Hello World!', messageId: item.id, customProperties: { source: 'Mobile Services', author: 'Paolo Salvatori' } }; // Send the message to the queue serviceBusService.sendQueueMessage('mobileservices/todoitem', message, function (error) { if (!error) { console.log('Sent message: ' + message); } }); } });}

Page 98: Mobile Services

Integration via Service Bus

Page 99: Mobile Services

DEMO

Integrate Mobile Services with on-premises LOB applications

Page 100: Mobile Services

Agenda 4th Hour: Storage Services, Scheduler, SendGrid

Store data to Table Storage using the azure Node.js module

Use Shared Access Signatures and Blobs with Mobile Services

Create and schedule jobs with the scheduler

Send emails using SendGrid Node.js module

Break (15 minutes)

Page 101: Mobile Services

Table Storage

Page 102: Mobile Services
Page 103: Mobile Services

Choose the PartitionKey and RowKey wisely Tables are partitioned to support load balancing across storage nodes.

A table's entities are organized by partition. A partition is a consecutive range of entities sharing the same partition key value.

The partition key is a unique identifier for the partition within a given table, specified by the PartitionKey property.

The partition key forms the first part of an entity's primary key.

The second part of the primary key is the row key, specified by the RowKey property.

The row key is a unique identifier for an entity within a given partition.

Together the PartitionKey and RowKey uniquely identify every entity within a table.

An entity can have up to 255 properties, including 3 system properties described in the following section.

Page 104: Mobile Services

Insert Script (simplified)function insert(item, user, request) { // Access table service var azure = require('azure'); var tableService = azure.createTableService('<your-storage-account-name>', '<your-storage-account-key>'); // Create table if not exists tableService.createTableIfNotExists('TodoItems', function(error) { if (error) { request.respond(statusCodes.BAD_REQUEST, error); } else { var entity = { PartitionKey: user.userId || 'default', RowKey: (new Date()).getTime(), text: item.text, complete: item.complete, }; // Insert the item in the storage table tableService.insertEntity('TodoItems', entity, function (error) { if (error) { request.respond(statusCodes.BAD_REQUEST, error); } else { request.respond(statusCodes.OK, entity); } }); } });}

Page 105: Mobile Services

DEMO

Table Storage

Page 106: Mobile Services

Shared Access Signatures A shared access signature (SAS) is a URI that grants restricted access rights to

containers, blobs, queues, and tables. You can provide a SAS to clients that are not trusted to use the storage account key

but to whom you wish to delegate access to certain storage account resources. By distributing a SAS URI to these clients, you can grant them access to a resource

for a specified period of time, with a specified set of permissions. A shared access signature can grant any of the following operations to a client that

possesses the signature: Reading and writing page or block blob content, block lists, properties, and metadata Deleting, leasing, and creating a snapshot of a blob Listing the blobs within a container Adding, removing, updating, and deleting queue messages Getting queue metadata, including the message count Querying, adding, updating, deleting, and upserting table entities

Page 107: Mobile Services

Blobs and Shared Access Signature1. The Windows Store app creates a new

album

2. The Mobile Service insert a new record in the Album table

3. Thw Windows Store app creates a new picture

4. The Mobile service calls the storage account to get a SAS for the image and its thumbnail

5. The Mobile Services saves the image data in the Picture table

6. The Insert script returns a SAS for the image and thumbnail in the item object

7. The Windows Store app uses the storage account client API and the SAS returned by the Mobile Service to save the image and thumbnail as blobs.

*Sample by Nick Harris, see references for more info

Page 108: Mobile Services

Server Script and SAS The insert script uses the following line of code to build a SAS URL:

return 'https://' + host + blobRelativePath + '?' + sasQueryString;

A typical SAS query string contains many parameters which depend on the storage resource (blob, container, table, queue)

se=2013-05-21T15%3A37%3A15Z&sr=b&sp=w&sig=dj9zqN%2BSM1UX se = signedexpiry: the time at which the shared access signature becomes invalid sr = signedresource: b to grant access to a blob, c to grant access to a container sp = signedpermissions: the permissions associated with the Shared Access Signature (w = write) sig = signature: the signature part of the URI is used to authenticate the request made with the SAS.

See http://msdn.microsoft.com/en-us/library/windowsazure/dn140255.aspx

Page 109: Mobile Services

DEMO

Blobs and SAS

Page 110: Mobile Services

What is the Azure Scheduler service?Platform service that allows users a simple way to schedule recurring actions against other services in the cloud

Examples: Store a daily backup of my SQL database to blob storage.

Clean up my To Do app’s done items every day

Check the health of my service every few minutes

Send a newsletter every day

Page 111: Mobile Services

Azure Scheduler CapabilitiesAzure Portal integrated experience

Actions can be scheduled to fire once or on a regular recurring schedule

Reliably and securely invoke services inside and outside of Azure using Node.js modules

Page 112: Mobile Services

Use a Job to backup a SQL Database1. The scheduler calls the

backup job

2. The backup job uses the request module to invoke the WA SQL Database Import/Export service by calling its REST endpoint

3. The Import/Export service reads the DB schema and data

4. The service exports DB schema and data to Windows Azure Blob Storage as a BACPAC

*Sample by Josh Twist, see references for more info

Page 113: Mobile Services

Code (1/2)function backup() {

var request = require('request');

var util = require('util');

var date = new Date();

var year = date.getUTCFullYear();

var month = date.getUTCMonth() + 1;

var day = date.getUTCDate();

var body = {

BlobCredentials: {

__type: "BlobStorageAccessKeyCredentials:#Microsoft.SqlServer.Management.Dac.ServiceTypes",

Uri: util.format("https://<your-storage-account-name>.blob.core.windows.net/bacpac/%s-%s-%s.bacpac", year, month, day),

StorageAccessKey: "<your-storage-account-key>"

},

ConnectionInfo: {

DatabaseName: "<your-database-name>",

Password: "<your-server-password>",

ServerName: "<your-server-name>.database.windows.net",

UserName: “<your-server-username>"

}

}

Page 114: Mobile Services

Code (2/2)

var postUri = "https://am1prod-dacsvc.azure.com/DACWebService.svc/Export";

request.post({

uri: postUri,

headers: {

'Content-Type': 'application/json',

},

body: JSON.stringify(body)

}, function (e, r, b) {

if (e || r.statusCode != 200) {

console.error('backup failed', e || r.statusCode, b);

}

else {

console.log('backup successful', b);

}

});

}

Page 115: Mobile Services

DEMO

Schedule SQL Database Backup

Page 116: Mobile Services

Send a Report via Email1. The scheduler calls the job

function

2. The script reads data from SQL tables and/or Storage tables

3. The script aggregates and formats data in a report.

4. The script sends the report via email using the the sendgrid Node.js module

Page 117: Mobile Services

Code (1/3)function CountTodoItems() {

var SendGrid = require('sendgrid').SendGrid;

// Get access to the storage table

var azure = require('azure');

var tableService = azure.createTableService('<your-storage-account-name>',

'<your-storage-account-name>');

// Define query to retrieve todo items

var tableQuery = azure.TableQuery

.select()

.from('TodoItems')

.where('complete eq ?', 'false');

// Retrieve todo items

queryEntities();

Page 118: Mobile Services

Code (2/3) function queryEntities() {

tableService.queryEntities(tableQuery, function (error, entities) {

if (error) {

var message = 'Failed to retrieve todo items from the TodoItems table.';

console.error(message);

}

else {

var text = 'The TodoItems table actually contains ' + entities.length + ' rows:\r\n\r\n';

for (var i = 0; i < entities.length; i++) {

text = text + ' - UserId: ' + entities[i].PartitionKey;

text = text + ' Item: ' + entities[i].text + '\r\n';

}

text = text + '\r\nMessage sent by TodoItems site at ' + (new Date()).toString();

sendEmail(text);

console.log(text);

}

});

}

Page 119: Mobile Services

Code (3/3) function sendEmail(text) {

var sendgrid = new SendGrid('babosbird', 'Trustno1');

sendgrid.send({

to: '[email protected]',

from: '[email protected]',

subject: 'Number of Todo Items',

text: text

}, function (success, message) {

// If the email failed to send, log it as an error so we can investigate

if (!success) {

console.error(message);

}

});

}

}

Page 120: Mobile Services

DEMO

Send a Report via Email

Page 121: Mobile Services

Trigger a Worker Role with a Service Bus Msg1. The scheduler calls the job

function.

2. The script creates and send a message to a Service Bus queue or topic.

3. One instance of the Worker Role reads the message from the queue/subscription.

4. The Worker Role instance processes the message.

Page 122: Mobile Services

Codefunction SendMessageToServiceBus() {

var azure = require('azure');

var serviceBusService = azure.createServiceBusService('paolosalvatori',

'PgTi69pNLU2Me58C3xiEDT5xosclhfEgQs6NsUCY9Qs=');

serviceBusService.createQueueIfNotExists('mobileservices/scheduler', function (error) {

if (!error) {

var builder = require('xmlbuilder');

var root = builder.create('job',

{ 'version': '1.0', 'encoding': 'UTF-8' })

.att('xmlns', 'http://windowsazure.cat.microsoft.com/samples/mobileservices');

root.ele('command', 'read');

root.ele('date', (new Date()).toUTCString());

var message = root.end({ 'pretty': true, 'indent': ' ', 'newline': '\n' });

serviceBusService.sendQueueMessage('mobileservices/scheduler', message, function (error) {

if (!error) {

console.log('Sent message: ' + message);

}

});

}

});

}

Page 123: Mobile Services

DEMO

Trigger a Worker Role with a Service Bus Msg

Page 124: Mobile Services

References Windows Azure Mobile Services

http://www.windowsazure.com/en-us/develop/mobile/

Tutorials and Resources http://www.windowsazure.com/en-us/develop/mobile/resources-html/

Upload File to Windows Azure Blob Storage using Windows Azure Mobile Services

http://code.msdn.microsoft.com/Upload-File-to-Windows-c9169190

Getting user information on Azure Mobile Services http://blogs.msdn.com/b/carlosfigueira/archive/2012/10/25/getting-user-information-on-azure-mobile-services.aspx

Troubleshooting authentication issues in Azure Mobile Services http://blogs.msdn.com/b/carlosfigueira/archive/2012/10/23/troubleshooting-authentication-issues-in-azure-mobile-s

ervices.aspx

Page 125: Mobile Services

References Using the scheduler to backup your Mobile Service database

http://www.thejoyofcode.com/Using_the_scheduler_to_backup_your_Mobile_Service_database.aspx

Getting started with the CLI and backing up your scripts http://www.thejoyofcode.com/Getting_started_with_the_CLI_and_backing_up_your_scripts_Day_4_.aspx

More CLI – changing your Mobile Services workflow http://www.thejoyofcode.com/More_CLI_ndash_changing_your_Mobile_Services_workflow_Day_5_.aspx

New Windows Azure Mobile Services Getting Started Content http://

blogs.msdn.com/b/windowsazure/archive/2013/01/09/new-windows-azure-mobile-services-getting-started-content.aspx

How to use Windows Azure Table Storage in Windows Azure Mobile Services http://code.msdn.microsoft.com/windowsazure/Use-Table-Storage-in-0b6bcbc7

Page 126: Mobile Services

References How to Use the Table Service from Node.js

http://www.windowsazure.com/en-us/develop/nodejs/how-to-guides/table-services/

How to Use Service Bus Queues

http://www.windowsazure.com/en-us/develop/nodejs/how-to-guides/service-bus-queues/

How to Use Service Bus Topics/Subscriptions

http://www.windowsazure.com/en-us/develop/nodejs/how-to-guides/service-bus-topics/

How to Send Email Using SendGrid from Node.js

http://www.windowsazure.com/en-us/develop/nodejs/how-to-guides/sendgrid-email-service/

Page 127: Mobile Services

Blogs Josh Twist Blog

http://www.thejoyofcode.com/

Nick Harris Blog http://www.nickharris.net/

Carlos Figuera http://blogs.msdn.com/b/carlosfigueira/

Paolo Salvatori Blog http://blogs.msdn.com/b/paolos

Page 128: Mobile Services

Contacts

Paolo SalvatoriEmail: [email protected]

Blog: http://blogs.msdn.com/b/paolos/

Twitter: @babosbird

Page 129: Mobile Services

© 2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries.The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.