MOC 50466, Windows Azure Solutions with Microsoft Visual Studio 2010

This 5 day instructor-led training class is presented by Microsoft training partners to their end customers. Channel Partners nationwide hire proven AMS Subject Matter Expert Microsoft Certified Trainers (MCT’s) to teach on-site or on-line classes.

This class is an introduction to cloud computing and specifically Microsoft’s public cloud offering in Windows Azure.  Windows Azure has been described by Microsoft as an operating system for “the cloud”.  In this class, you explore this new cloud operating system and learn how to write, deploy and monitor .NET applications in Azure.

Goals

  • Understand cloud computing in its various forms and how Windows Azure fits in the cloud computing space.
  • Learn why organizations want to run applications in the Azure cloud.
  • Understand the architecture of Azure.
  • Learn to explore the Azure SDK and DevFabric development environment.
  • Learn how to develop applications for Azure and how that varies from “normal” .NET application development.
  • Learn to write and deploy a ASP.NET Web application (Web Role) to Azure.
  • Learn to explore Azure storage capability.
  • Learn how to create and deploy background computatinal applications (Worker Role) in Azure.
  • Learn to explore SQL Azure capability.

Outline

  1. Cloud Computing
    1. Define cloud computing.
    2. Learn the benefits of cloud computing.
    3. Understand the different types of cloud computing services.
    4. Explore where computing clouds might exist.
    5. Hear about potential concerns with cloud computing.
    6. Learn where cloud computing can and cannot be applied.
    7. Place Windows Azure in light of general cloud computing.
    8. Know how Windows Azure compares to other cloud environments.
    9. Lab: Windows Azure Account Setup (Optional)
      1. Understand how to create a Windows Azure account.
      2. Explore the types of Windows Azure accounts.
      3. Learn how to access and use the Windows Azure Developer Portal.
      4. Examine the Windows Azure Developer Portal.
  2. Windows Azure Architecture
    1. See a simple Windows Azure application.
    2. Learn about the Microsoft data centers.
    3. Explore the hardware, servers and virtualization (the Fabric) that host cloud applications and data.
    4. Understand the role of the Fabric Controller in managing the Windows Azure cloud.
    5. Know the general architecture and components of the Windows Azure Platform.
    6. Understand the tools used to create and deploy Windows Azure services and data stores.
    7. Lab: Introduction to Windows Azure
      1. Explore your first Windows Azure project in Visual Studio.
      2. See how to test a cloud application in Visual Studio.
      3. Learn how to publish a cloud application.
      4. Examine the process of deploying an application via the Developer Portal.
      5. Learn how to remove a service from the cloud.
  3. Windows Azure Web Roles
    1. Explore the purpose of Windows Azure Web roles.
    2. Understand how to create Web roles in a cloud service project.
    3. See how to configure a Web role.
    4. Learn how to test Web roles run in the Dev Fabric.
    5. Start exploring the Windows Azure API.
    6. Lab: Building a Web Role
      1. Create a Cloud Application using Windows Azure Tools for Visual Studio.
      2. Explore the Web role project.
      3. Configure a Web role project.
      4. See a multi-instance role running in Dev Fabric.
      5. Modify the application to use a custom configuration setting.
      6. Optionally, see a Web role cloud project deployed to Windows Azure.
  4. Local Storage
    1. Examine Windows Azure local storage.
    2. See how local storage differs from normal server file systems.
    3. Learn how to configure local storage.
    4. Understand the limitations of local storage and where/when to use it.
    5. Explore the API to access local storage.
    6. Learn about Windows Azure Drive (formerly X-Drive).
    7. Lab: Using Local Storage
      1. Configure a Web Role to have local storage.
      2. Alter the Web role code to read and write to local storage.
      3. Explore the relationship of local storage to roles and role instances.
      4. Explore how to clean local storage on role instance recycling.
      5. Optionally, deploy the local storage using cloud project to the Windows Azure cloud.
  5. Windows Azure Storage and Queues
    1. Understand the purpose of Windows Azure Storage.
    2. Learn how to create a Windows Azure Storage account.
    3. Explore Windows Azure Storage costs.
    4. Understand Dev Storage, how to use it, and how it is different from Windows Azure Storage.
    5. See how to access Windows Azure Storage using both the REST API and the Storage Client Library.
    6. Examine Windows Azure Storage Queues.
    7. Learn how to get messages in and out of Windows Azure Queues.
    8. Lab: Learning Windows Azure Storage and Queues
      1. Use a Web role to create a queue and add messages to the queue.
      2. Learn how to add another Web role to your cloud service project.
      3. Use a Web role to read and display messages in the queue.
      4. Observe the difference between getting and peeking at messages in a queue.
      5. Optionally, see how to create a Storage Account service.
      6. Optionally, examine how to create an Affinity Group.
      7. Optionally, learn where to find storage account URLs and access keys.
      8. Optionally, deploy the cloud service project to the Windows Azure cloud.
      9. Explore Windows Azure Storage with external utilities.
  6. Blob Storage
    1. Understand the rationale for using blob storage.
    2. Explore how to access blob storage with both the Storage Client and REST API.
    3. Examine blob storage containers and how they are used to organize and control access to blobs.
    4. Learn about the different types of blobs: block and page blobs.
    5. Lab: Using Blob Storage
      1. Use a Web role to create a blob container and set permissions on the container.
      2. Learn how to upload blobs into a container.
      3. Use a Web role to retrieve a blob by its name (reference).
      4. Work with blob metadata.
      5. Explore the REST API used to access blob storage.
  7. Table Storage
    1. Explore Windows Azure Storage’s structural data service.
    2. Understand the reason for table storage.
    3. Examine the differences between table storage and traditional relational databases (as exhibited by SQL Azure).
    4. Learn how to access table storage with both the Storage Client and REST API.
    5. Understand entities as they relate to table storage.
    6. Examine how to save and retrieve entities in table storage.
    7. See how to use table storage for session management in Windows Azure Web applications.
    8. Lab: Using Table Storage
      1. Define an entity class.
      2. Build a TableServiceContext object to negotiate data in and out of table storage.
      3. Learn how to save entity data to table storage.
      4. Explore queries to fetch entity data from table storage.
  8. Worker Roles
    1. Explore the purpose of Windows Azure worker roles.
    2. Understand how to create worker roles in a cloud service project.
    3. See how to configure a worker role.
    4. Learn how to test worker roles run in the Dev Fabric.
    5. Learn how to use Windows Azure Storage queues and messages to communicate with worker roles.
    6. Explore how to setup worker role endpoints.
    7. Learn how to communicate with worker role internal and input endpoints.
    8. Lab: Building a Worker Role
      1. Create a worker role and add it to your cloud project.
      2. Explore the contents of a worker role project.
      3. Configure a worker role to monitor a queue for messages.
      4. Re-explore the use of queue storage in role-to-role communications.
      5. Re-explore table storage.
  9. SQL Azure
    1. Learn what SQL Azure is and why you want to use it.
    2. Understand SQL Azure in comparison to SQL Server and Windows Azure table storage.
    3. Learn how to provision a SQL Azure server and databases.
    4. Examine costs associated with SQL Azure.
    5. See how to use familiar tools and APIs to work in SQL Azure.
    6. Explore how to create and manage database objects in SQL Azure.
    7. Know how to limit SQL Azure access.
    8. Understand options for performing database backups.
    9. See how to migrate data to SQL Azure.
  10. Diagnostics and Logging
    1. Learn how to accomplish debugging and logging in Windows Azure.
    2. Examine Windows Azure Diagnostic Service.
    3. Understand the role of the MonAgentHost process in the diagnostic service.
    4. Learn how to configure the diagnostic service.
    5. See how to transfer diagnostic data to Windows Azure Storage.
    6. Lab: Using Table Storage
      1. See how Visual Studio cloud templates provide default diagnostic monitoring setup.
      2. Add trace statements to cloud code.
      3. Learn how to schedule diagnostic data to be transferred to Windows Azure Storage.
      4. Learn how to perform an on-demand transfer of diagnostic data to storage.

To Hire an AMS Microsoft Azure, Visual Studio 2010 Subject Matter Expert
Consultant and Instructor who also teaches this class, call 800-798-3901 today!

Leave a Reply