Close
Contact Us info@learnquest.com

??WelcomeName??
??WelcomeName??
« Important Announcement » Contact Us 877-206-0106 | USA Flag
Close
Close
Close
photo

Thank you for your interest in LearnQuest.

Your request is being processed and LearnQuest or a LearnQuest-Authorized Training Provider will be in touch with you shortly.

photo

Thank you for your interest in Private Training.

We look forward to helping you develop the perfect training solution to help you meet your company's goals.

For immediate assistance, speak with one of our representatives using the chat module below. Otherwise, LearnQuest or a LearnQuest-Authorized Training Provider will be in touch with you shortly.

Close
photo

Thank you for your interest in LearnQuest!

Now, you will be able to stay up-to-date on our latest course offerings, promotions, and training discounts. Watch your inbox for upcoming special offers.

title

Date: xxx

Location: xxx

Time: xxx

Price: xxx

Please take a moment to fill out this form. We will get back to you as soon as possible.

All fields marked with an asterisk (*) are mandatory.

Developing Microsoft Azure and Web Services

Price
2,400 GBP
5 Days
MOC-20487-DE-GB
Classroom Training, Online Training
Microsoft

AWS Training Pass

Take advantage of flexible training options with the AWS Training Pass and get Authorized AWS Training for a full year.

Learn More

Prices reflect a 22.5% discount for IBM employees (wherever applicable).
Prices reflect a 24% discount for Kyndryl employees (wherever applicable).
Prices reflect the Accenture employee discount.
Prices shown are the special AWS Partner Prices.
Prices reflect the Capgemini employee discount.
Prices reflect the UPS employee discount.
Prices reflect the ??democompanyname?? employee discount.
GSA Private/Onsite Price: ??gsa-private-price??
For GSA pricing, please go to GSA Advantage.

Class Schedule

Delivery Formats

Sort results

Filter Classes

Guaranteed to Run

Modality

Location

Language

Date

  • Date: 20-May-2024 to 24-May-2024
    Time: 8AM - 4PM London Time
    Location: Virtual
    Language: English
    Delivered by: LearnQuest
    Price: 2,400 GBP
  • Date: 17-Jun-2024 to 21-Jun-2024
    Time: 8AM - 4PM London Time
    Location: Virtual
    Language: English
    Delivered by: LearnQuest
    Price: 2,400 GBP
View Global Schedule

Course Description

Overview

In this course, students will learn how to design and develop services that access local and remote data from various sources. Students will also learn how to develop and deploy services to hybrid environments, including on-premises servers and Microsoft Azure.
 

Objectives

In this course, students will learn how to design and develop services that access local and remote data from various sources. Students will also learn how to develop and deploy services to hybrid environments, including on-premises servers and Microsoft Azure.
 

Audience

Primary: .NET developers who want to learn how to develop services and deploy them to hybrid environments.
Secondary: .NET developers with Web application development experience who are exploring developing new applications or porting existing applications to Microsoft Azure.
 

Prerequisites

    Before attending this course, students must have:

    • Experience with C# programming, and concepts such as lambda expressions, LINQ, and anonymous types
    • Understanding the concepts of n-tier applications
    • Experience with querying and manipulating data with ADO.NET

     

Topics

Course OutlineModule 1: Overview of service and cloud technologiesThis module provides an overview of service and cloud technologies using the Microsoft .NET Core and the Azure. The first lesson, “Key Components of Distributed Applications,” discusses characteristics that are common to distributed systems, regardless of the technologies they use. Lesson 2, “Data and Data Access Technologies” describes how data is used in distributed applications. Lesson 3, “Service Technologies,” discusses two of the most common protocols in distributed system and the .NET Core technologies used to develop services based on those protocols. Lesson 4, “Cloud Computing,” describes cloud computing and how it is implemented in Azure.Lessons
  • Key Components of Distributed Applications
  • Data and Data Access Technologies
  • Service Technologies
  • Cloud Computing
  • Manipulating Data
Lab : Exploring the Work Environment
  • Creating an ASP.NET Core project
  • Create a simple Entity Framework model
  • Create a web API class
  • Deploy the web application to Azure

After completing this module, students will be able to:

  • Explain services architecture and hosting environments
  • Explain cloud computing and the Microsoft Azure cloud platform
  • Explain data access strategies
Module 2: Querying and Manipulating Data Using Entity FrameworkIn this module, you will learn about the Entity Framework data model, and about how to create, read, update, and delete data. Entity Framework is a rich object-relational mapper, which provides a convenient and powerful application programming interface (API) to manipulate data. This module focuses on the Code First approach with Entity Framework.Lessons
  • ADO.NET Overview
  • Creating an Entity Data Model
  • Querying Data
Lab : Creating a Data Access Layer using Entity Framework
  • Creating a data model
  • Query the Database
Lab : Manipulating Data
  • Create repository methods
  • Test the model using SQL Server and SQLite

After completing this module, students will be able to:

  • Describe basic objects in ADO.NET and explain how asynchronous operations work.
  • Create an Entity Framework Core data model.
  • Query data by using Entity Framework Core.
  • Insert, delete, and update entities by using Entity Framework Core.
Module 3: Creating and Consuming ASP.NET Core Web APIsASP.NET Core Web API provides a robust and modern framework for creating Hypertext Transfer Protocol (HTTP)-based services. In this module, you will be introduced to the HTTP-based services. You will learn how HTTP works and become familiar with HTTP messages, HTTP methods, status codes, and headers. You will also be introduced to the Representational State Transfer (REST) architectural style and hypermedia. You will learn how to create HTTP-based services by using ASP.NET Core Web API. You will also learn how to consume them from various clients. After Lesson 3, in the lab "Creating an ASP.NET Core Web APIs", you will create a web API and consume it from a client.Lessons
  • HTTP Services
  • Creating an ASP.NET Core Web API
  • Consuming ASP.NET Core Web APIs
  • Handling HTTP Requests and Responses
  • Automatically Generating HTTP Requests and Responses
Lab : Creating an ASP.NET Core Web API
  • Create a controller class
  • Use the API from a browser
  • Create a client

After completing this module, students will be able to:

  • Design services by using the HTTP protocol.
  • Create services by using ASP.NET Core Web API.
  • Use the HttpRequest/IActionResult classes to control HTTP messages.
  • Consume ASP.NET Web API services.
Module 4: Extending ASP.NET Core HTTP ServicesASP.NET Core Web API provides a complete solution for building HTTP services, but services often have various needs and dependencies. In many cases, you will need to extend or customize the way ASP.NET Core Web API executes your service. Handling needs such as applying error handling and logging integrate with other components of your application and supporting other standards that are available in the HTTP world. Understanding the way ASP.NET Core Web API works is important when you extend ASP.NET Core Web API. The division of responsibilities between components and the order of execution are important when intervening with the way ASP.NET Core Web API executes. Finally, with ASP.NET Core Web API, you can also extend the way you interact with other parts of your system. With the dependency resolver mechanism, you can control how instances of your service are created, giving you complete control on managing dependencies of the services.Lessons
  • The ASP.NET Core Request Pipeline
  • Customizing Controllers and Actions
  • Injecting Dependencies into Controllers
Lab : Customizing the ASP.NET Core Pipeline
  • Use Dependency Injection to Get a Repository Object
  • Create a Cache Filter
  • Create a Debugging Middleware

After completing this module, students will be able to:

  • Extend the ASP.NET Web API request and response pipeline.
  • Customize Controllers and Actions.
  • Inject dependencies into ASP.NET Web API controllers.
Module 5: Hosting Services On-Premises and in AzureIn this module you will learn how to host your application on-premises and on Azure. You will also learn about Docker containers, and writing serverless applications with Azure functions.Lessons
  • Hosting Services on-premises
  • Hosting Services in Azure App Service
  • Packaging Services in Containers
  • Implementing Serverless Services
Lab : Host an ASP.NET Core service in a Windows Service
  • Creating a new ASP.NET Core Application
  • Registering the Windows Service
Lab : Host an ASP.NET Core Web API in an Azure Web App
  • Create a Web App in the Azure portal
  • Deploy an ASP.NET Core Web API to the Web App
Lab : Host an ASP.NET Core service in Azure Container Instances
  • Publish the service to a Docker container
  • Host the service in Azure Container Instances
Lab : Implement an Azure Function
  • Develop the service locally
  • Deploy the service to Azure Functions

After completing this module, students will be able:

  • Host services on-premises by using Windows services and Microsoft Internet Information Services (IIS).
  • Host services in the Azure cloud environment by using Web Apps, Docker containers, and Azure Functions.
  • Package services in containers.
  • Implement serverless services.
Module 6: Deploying and Managing ServicesIn this module, you will learn about Web Deploy and how to deploy web applications by using Web Deploy in Visual Studio. You will also learn how to define continuous integration and continuous delivery pipelines and how to use Azure API Management and OpenAPI to provide robust, secure, and reliable APIs to your customers.Lessons
  • Web Deployment with Visual Studio 2017
  • Continuous Delivery with Visual Studio Team Services
  • Deploying Applications to Staging and Production Environments
  • Defining Service Interfaces with Azure API Management
Lab : Deploying an ASP.NET Core web service on Linux
  • Publish the ASP.NET Core web service for Linux
  • Configure Nginx as a reverse proxy
Lab : Deploying to Staging and Production
  • Deploy the application to production
  • Create a staging slot
  • Swap the Environments
Lab : Publishing a Web API with Azure API Management
  • Creating an Azure API Management instance
  • Testing and managing the API

After completing this module, students will be able to:

  • Explain Microsoft Internet Information Services (IIS) Web Deploy.
  • Explain Azure Web Apps deployment by using a Microsoft Visual Studio Team Services build pipeline.
  • Explain how to deploy web services to Azure Container Instances.
  • Explain how to define service interfaces by using API Management and Swagger.
  • Explain how to define policies by using API Management.
  • Explain defining service interfaces using Azure API Management and Swagger
Module 7: Implementing Data Storage in AzureThis module explains how to store and access data stored in Azure Storage. It also explains how to configure storage access rights for storage containers and content.Lessons
  • Choosing a Data Storage Mechanism
  • Accessing Data in Azure Storage
  • Working with Structured Data in Azure
  • Geographically Distributing Data with Azure CDN
  • Scaling with Out-of-Process Cache
Lab : Storing Files in Azure Storage
  • Store publicly accessible files in Azure Blobs
  • Generate and store private files in Azure Blobs
Lab : Querying Graph Data with CosmosDB
  • Create the CosmosDB graph database
  • Query the CosmosDB database
Lab : Caching out-of-process with Azure Redis cache
  • Create the Azure Redis Cache service
  • Access the cache service from code
  • Test the application

After completing this module, students will be able to:

  • Describe the architecture of Storage.
  • Control access to your Storage items.
  • Cache data using Azure Cache for Redis.
  • Distribute data by using Microsoft Azure Content Delivery Network.
Module 8: Diagnostics and MonitoringThis module explains how to monitor and log services, both on-premises and in Azure.Lessons
  • Logging in ASP.NET Core
  • Diagnostic Tools
  • Application Insights
Lab : Monitoring ASP.NET Core with ETW and LTTng
  • Collect and view ETW events
  • Collect and view LTTng events
Lab : Monitoring Azure Web Apps with Application Insights
  • Add the Application Insights SDK
  • Load test the web service
  • Analyze the performance results

After completing this module, students will be able to:

  • Explain trace listeners
  • Explain performance counters
  • Explain ETW and LTTng events
  • Demonstrate using App Insights to monitor services
Module 9: Securing services on-premises and in Microsoft AzureThis module describes claim-based identity concepts and standards, and how to implement authentication and authorization by using Azure Active Directory to secure an ASP.NET Core Web API service.Lessons
  • Explaining Security Terminology
  • Securing Services with ASP.NET Core Identity
  • Securing Services with Azure Active Directory
Lab : Using ASP.NET Core Identity
  • Add ASP.NET Core Identity middleware
  • Add authorization code
  • Run a client application to test the server
Lab : Using Azure Active Directory with ASP.NET Core
  • Authenticate a client application using AAD B2C and MSAL.js
Module 10: Scaling ServicesThis module explains how to create scalable services and applications and scale them automatically using Web Apps load balancers, Azure Application Gateway and Azure Traffic Manager.Lessons
  • Introduction to Scalability
  • Automatic Scaling
  • Azure Application Gateway and Traffic Manager
Lab : Load Balancing Azure Web Apps
  • Prepare the application for load-balancing
  • Test the load balancing with instance affinity
  • Test the load balancing without affinity
Lab : Load Balancing with Azure Traffic Manager
  • Deploy an Azure Web App to multiple regions
  • Create an Azure Traffic Manager profile

After completing this module, students will be able to:

  • Explain the need for scalability.
  • Describe how to use load balancing for scaling services.
  • Explain Azure Load Balancer, Azure Application Gateway, and Azure Traffic Manager.

 
2023 Top 20 Training Industry Company - IT Training

Need Help?

Call us at 877-206-0106 or e-mail us at info@learnquest.com

Personalized Solutions

Need a personalized solution for your Training? Contact us, and one of our training advisors will help you find the best solution.

Contact Us

Need Help?

Do you have a question about the courses, instruction, or materials covered? Do you need help finding which course is best for you? We are here to help!

Talk to us

20% Off All AI Training Courses

Achieve more with AI-powered tools and strategies.

PROMO CODE: AI20
VALID THROUGH APRIL 30, 2024

20% Off All AI Training Courses

Self-Paced Training Info

Learn at your own pace with anytime, anywhere training

  • Same in-demand topics as instructor-led public and private classes.
  • Standalone learning or supplemental reinforcement.
  • e-Learning content varies by course and technology.
  • View the Self-Paced version of this outline and what is included in the SPVC course.
  • Learn more about e-Learning

Course Added To Shopping Cart

bla

bla

bla

bla

bla

bla

Self-Paced Training Terms & Conditions

??spvc-wbt-warning??
??group-training-form-area??
??how-can-we-help-you-area??
??personalized-form-area??
??request-quote-area??

Sorry, there are no classes that meet your criteria.

Please contact us to schedule a class.
Close

self-paced
STOP! Before You Leave

Save 0% on this course!

Take advantage of our online-only offer & save 0% on any course !

Promo Code skip0 will be applied to your registration

Close
Nothing yet
here's the message from the cart

To view the cart, you can click "View Cart" on the right side of the heading on each page
Add to cart clicker.

Purchase Information

??elearning-coursenumber?? ??coursename??
View Cart

Need more Information?

Speak with our training specialists to continue your learning journey.

 

Delivery Formats

Close

By submitting this form, I agree to LearnQuest's Terms and Conditions

heres the new schedule
This website uses third-party profiling cookies to provide services in line with the preferences you reveal while browsing the Website. By continuing to browse this Website, you consent to the use of these cookies. If you wish to object such processing, please read the instructions described in our Privacy Policy.
Your use of this LearnQuest site affirms your consent to our use of session and persistent cookies to track how you use our website.