virtual techdays india │ 28 - 30 september 2011 building windows phone 7 apps for windows azure -...

18
virtual techdays INDIA 28 - 30 September 2011 Building Windows Phone 7 Apps For Windows Azure - Best Match with Cloud Jebarson Jebamony Consultant, Microsoft

Upload: destini-reeves

Post on 01-Apr-2015

214 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: Virtual techdays INDIA │ 28 - 30 September 2011 Building Windows Phone 7 Apps For Windows Azure - Best Match with Cloud Jebarson Jebamony │ Consultant,

virtual techdaysINDIA │ 28 - 30 September 2011

Building Windows Phone 7 Apps For Windows Azure - Best Match with CloudJebarson Jebamony │ Consultant, Microsoft

Page 2: Virtual techdays INDIA │ 28 - 30 September 2011 Building Windows Phone 7 Apps For Windows Azure - Best Match with Cloud Jebarson Jebamony │ Consultant,

Introduction Windows Azure Toolkit for Windows Phone ASP.net MVC3 Web Role Authentication Blobs Queues Tables Questions & Answers

virtual techdaysINDIA │ 28 - 30 September 2011

S E S S I O N A G E N D A

Page 3: Virtual techdays INDIA │ 28 - 30 September 2011 Building Windows Phone 7 Apps For Windows Azure - Best Match with Cloud Jebarson Jebamony │ Consultant,

Availability, CDN.

On demand.

No infrastructure overhead.

SQL on cloud.

virtual techdaysINDIA │ 28 - 30 September 2011

Introduction

Page 4: Virtual techdays INDIA │ 28 - 30 September 2011 Building Windows Phone 7 Apps For Windows Azure - Best Match with Cloud Jebarson Jebamony │ Consultant,

Toolkit & Project templates for Azure based apps on Windows Phone.

OOB support for authentication using ASP.net membership / ACS.

OOB integration with Azure storage account.

ACS support extended to Windows live, Yahoo, Google, ADS, Facebook, etc.

OOB integration with SQL Azure.

OOB support for Microsoft and Apple Push notification.

virtual techdaysINDIA │ 28 - 30 September 2011

Windows Azure Toolkit for Windows Phone

Page 5: Virtual techdays INDIA │ 28 - 30 September 2011 Building Windows Phone 7 Apps For Windows Azure - Best Match with Cloud Jebarson Jebamony │ Consultant,

virtual techdaysINDIA │ 28 - 30 September 2011

Windows Azure Toolkit for Windows

PhoneASP.net MVC3 Web Role

Authentication Service

Storage Service

SQL Data Service

Push Notification

Service

Authentication Providers Live, Yahoo, Facebook, Google etc.

Azure ACS

Azure Queues

Windows Azure Toolkit for Windows Phone

Azure Blobs

Azure Tables

MS Push Notification Service

SQL Azure

Page 6: Virtual techdays INDIA │ 28 - 30 September 2011 Building Windows Phone 7 Apps For Windows Azure - Best Match with Cloud Jebarson Jebamony │ Consultant,

Certificate for signed request made from the API.

User management.

Table access management.

Queue access management.

Full push notification management.

virtual techdaysINDIA │ 28 - 30 September 2011

ASP.net MVC3 Web Role

Page 7: Virtual techdays INDIA │ 28 - 30 September 2011 Building Windows Phone 7 Apps For Windows Azure - Best Match with Cloud Jebarson Jebamony │ Consultant,

virtual techdaysINDIA │ 28 - 30 September 2011

ASP.net MVC3 Web Role – Demo

Page 8: Virtual techdays INDIA │ 28 - 30 September 2011 Building Windows Phone 7 Apps For Windows Azure - Best Match with Cloud Jebarson Jebamony │ Consultant,

virtual techdaysINDIA │ 28 - 30 September 2011

Authentication

Windows Azure Toolkit for Windows Phone

AuthenticationClient

ASP.net MVC3 Web Role

Secure Certificate

AuthenticationService

1. Authentication Request

2. Service verifies the credentials across the selected membership.

3. Once the credentials are validated, the service creates a token and encrypts & signs it. The token will be identified for further transactions

4. The token is sent back along with a authentication succeeded message.

Page 9: Virtual techdays INDIA │ 28 - 30 September 2011 Building Windows Phone 7 Apps For Windows Azure - Best Match with Cloud Jebarson Jebamony │ Consultant,

virtual techdaysINDIA │ 28 - 30 September 2011

Authentication – Demo

Page 10: Virtual techdays INDIA │ 28 - 30 September 2011 Building Windows Phone 7 Apps For Windows Azure - Best Match with Cloud Jebarson Jebamony │ Consultant,

virtual techdaysINDIA │ 28 - 30 September 2011

Blobs

Windows Azure Toolkit for Windows Phone

SharedAccessSignatureServiceClient

ASP.net MVC3 Web RoleSecure Certificate

SharedAccessSignatureService

1. Instantiate CloudBlobClient using SAS / using the Blob Uri and authentication token

2. CloudBlobClient uses the SAS service / the authentication token to build the request to the REST API of the cloud storage container.

3. The request sent is processed and sent back as a response

CloudBlobClient4. The response is encapsulated as CloudOperationResponse and send back.

Page 11: Virtual techdays INDIA │ 28 - 30 September 2011 Building Windows Phone 7 Apps For Windows Azure - Best Match with Cloud Jebarson Jebamony │ Consultant,

virtual techdaysINDIA │ 28 - 30 September 2011

Blobs – Demo

Page 12: Virtual techdays INDIA │ 28 - 30 September 2011 Building Windows Phone 7 Apps For Windows Azure - Best Match with Cloud Jebarson Jebamony │ Consultant,

virtual techdaysINDIA │ 28 - 30 September 2011

Queues

Windows Azure Toolkit for Windows Phone

CloudQueueClient

ASP.net MVC3 Web Role

Secure Certificate

AzureQueueProxy

1. Instantiate CloudQueueClient using token

2. Send the request across to the AzureQueueProxy

3. Signs the request header with the authorization and expiry date time.

4. Sends back the CloudOperationResponse got from the Azure SDK.

Page 13: Virtual techdays INDIA │ 28 - 30 September 2011 Building Windows Phone 7 Apps For Windows Azure - Best Match with Cloud Jebarson Jebamony │ Consultant,

virtual techdaysINDIA │ 28 - 30 September 2011

Queues – Demo

Page 14: Virtual techdays INDIA │ 28 - 30 September 2011 Building Windows Phone 7 Apps For Windows Azure - Best Match with Cloud Jebarson Jebamony │ Consultant,

virtual techdaysINDIA │ 28 - 30 September 2011

Tables

Windows Azure Toolkit for Windows Phone

CloudTableClient

ASP.net MVC3 Web Role

Secure Certificate

AzureTableProxy

1. Define a TableServiceEntity with the schema of the table.2. Create a TableServiceContext with the authentication token.3. Make a request out of CloudTableClient / TableServiceContext as per need.

4. The request encapsulated along with the TableServiceSchema when send to the proxy service.

TableServiceContext Dat

aSer

vice

Colle

ction

5. The CloudOperationResponse brings the output per the request as a DataServiceCollection.

TableServiceEntity

Page 15: Virtual techdays INDIA │ 28 - 30 September 2011 Building Windows Phone 7 Apps For Windows Azure - Best Match with Cloud Jebarson Jebamony │ Consultant,

virtual techdaysINDIA │ 28 - 30 September 2011

Tables – Demo

Page 16: Virtual techdays INDIA │ 28 - 30 September 2011 Building Windows Phone 7 Apps For Windows Azure - Best Match with Cloud Jebarson Jebamony │ Consultant,

Windows Azure Toolkit for Windows Phone

Using Windows Azure Toolkit Project Template – Channel 9 Video

Questions on toolkit [email protected]

virtual techdaysINDIA │ 28 - 30 September 2011

Resources

Page 17: Virtual techdays INDIA │ 28 - 30 September 2011 Building Windows Phone 7 Apps For Windows Azure - Best Match with Cloud Jebarson Jebamony │ Consultant,

virtual techdaysINDIA │ 28 - 30 September 2011

Building Windows Phone 7 Apps For Windows Azure - Best Match with CloudQuestions & Answers

Page 18: Virtual techdays INDIA │ 28 - 30 September 2011 Building Windows Phone 7 Apps For Windows Azure - Best Match with Cloud Jebarson Jebamony │ Consultant,

virtual techdaysTHANKS│22-24 November 2010

[email protected] │ http://jebarson.info │ @jebarson007