Month End Sale: Get Extra 10% OFF on Job-oriented Training! Offer Ending in
D
H
M
S
Get Now
Building a Microservice with ASP.NET Core

Building a Microservice with ASP.NET Core

04 Jun 2024
Intermediate
25.5K Views
11 min read

Microservices with ASP.NET Core

Microservices has distributed systems features, lifecycle management, independent scaling of services, rolling upgrades of applications, and always-on availability, and it also supports stateless and stateful services. It’s a Windows component.

In this Microservices tutorial, we are going to create a Microservice using Azure Service FabricApplication with an ASP.NET Core Web API in Visual Studio. 

What is Microservice?

  • The word "microservices" refers to a type of software development.
  • It has evolved from modern trends to established procedures designed to boost the productivity and efficiency of creating and maintaining software solutions at scale.
  • Applying certain architectural patterns and concepts is more the focus of microservices architecture.
  • Although each microservice operates separately, they are all dependent upon one another.
  • Within a project, every microservice is independently deployed and coexists side by side in production at their own speed, on-premise in the cloud.

Architecture of Microservices

Architecture of Microservices

A microservices architecture consists of more than just the microservices themselves.

  • Management: It maintains the service's nodes.
  • Identity Provider: oversees identification data and offers authentication services across a dispersed network.
  • Service Discovery: It maintains track of services, endpoints, and service addresses.
  • API Gateway: It acts as a point of entry for clients. Client-side single point of contact that receives responses from underlying microservices and, occasionally, aggregates responses from several underlying microservices.
  • CDN(Content Delivery Network): It distributes static resources across a distributed network, such as pages and web content.
  • StaticContent: Web content and pages are examples of static Content.

Building a Microservice with ASP.NET Core

Now, Let's create an Azure Service Fabric Application with an ASP.NET Core Web API in Visual Studio.

1. Setting Up Dev Environment

  1. Install Visual Studio 2017 with Azure Development, ASP.NET, and web development workloads.

  2. Install the Microsoft Azure Service Fabric SDK.

  3. Open PowerShell in administrator mode and run the following command to enable Visual Studio to deploy to the local Service Fabric.

    cluster:powershell Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Force -Scope CurrentUser

2. Creating Microservice Using Azure Service Fabric

  • Launch Visual Studio as an administrator.
  • Create a new project with File->New->Project.
  • Select Service Fabric Application from the Cloud category.
  • Name the application as ServiceFabricDemo
  • Click OK.
  • Creating Microservice Using Azure Service Fabric

  • On the New Service Fabric Service choose Stateless ASP.NET Core template.
  • Name your service as per your choice.
  • Here I am going with the default name as Web1 and then click OK.
  • Creating Microservice Using Azure Service Fabric

  • On the next window choose API as the template.
  • Then click OK and it will create your Service Fabric Application.
  • Creating Microservice Using Azure Service FabricCreating Microservice Using Azure Service Fabric

  • Here is our solution which has 2 projects.
  • The first project is the application project which has no code in it, which ends up creating the application manifest XML file.
  • If you open this node you'll see there's a services entry in the tree.
  • If you open the services entry, you'll see one entry for Web1.
  • You can right-click on services here and you can add additional service fabric services into the collection.
  • Next, we are having our real service where our codes lie.
  • If you look at the properties for this project you can see it is just a .NET console application.
  • Creating Microservice Using Azure Service Fabric

    3. Azure Service Fabric Local Cluster

    The Azure Service Fabric Local Cluster gets shipped with the Service Fabric SDK and you can get it installed on your local machine. You can run your local cluster from the taskbar. Right-clicking the icon will open the context menu with the following options.

     Azure Service Fabric Local Cluster

    1. Exit: Removes the icon of the tray. It won’t kill the actual local cluster, it just kills that utility.
    2. Remove Local Cluster: Remove all the files for the local cluster from your hard disk and clean up the hard disk space.
    3. Switch Cluster Mode: By default, the services of the local cluster will be running on one node. Using this option, you can make it run on 5 nodes.
    4. Stop Local Cluster: Stops the local cluster from running, so it's not wasting any CPU cycles but it is leaving all the files on your desk so you can start the local cluster again whenever you want.
    5. Start Local Cluster: The option is disabled out here as it is already running. You can start if you have stopped it.
    6. Reset Local Cluster: You can use this option to bring down the local cluster, get everything out of it, reset it, and then start it back up again.
    7. Manage Local Cluster: This will launch the local cluster on your default browser and you can see what’s happening inside it.

    4. Selecting a local cluster

    Selecting Manage Local Cluster by double-clicking the icon will you to the dashboard of the local cluster in your default browser. Here it will show the number of Applications and nodes. As we haven’t deployed it won’t show any applications here

    Selecting a local cluster

    • In the Address Bar, you can see that it is starting off with localhost as your cluster is running on your local machine.
    • In case you have a cluster running on an Amazon data center or an Azure data center, the localhost will be replaced with the IP address of that location.
    • It is also possible to secure these with certificates making only those client machines having a certificate can communicate with the server.
    • Service Fabric uses port 19080 as an endpoint for making REST requests to Service Fabric components within a cluster and the rest of this part of the address is a like a subsection right you can drill into various parts of the cluster.
    • The Service Fabric Explorer interface has a refresh rate where it will periodically pull the cluster to get new information.
    • You can adjust as per your choice.
    • Setting it to fast which has it refreshing every two seconds where you can see what's happening in the cluster as quickly as possible.

    Cluster

    In the left-hand plane, you can see that the cluster has broken down into three sections:

    • 1. Applications: Applications are a kind of software view on what is happening within the cluster while nodes are more like a hardware view which shows you the nodes that are in the cluster.
    • 2. Nodes: By default, in the local cluster, you will have only one node which you can change from the context menu. For each node, a separate instance of fabric.exe and fabricateway.exe will be running on your local machine. This is a brand-new cluster that has nothing going on presently.
    • 3. System: The System section will show the system services for the cluster. Basically, there will be six, and only four out of six are available on the local cluster and the other two ImageStoreService and UpgradeService only exist in the Azure data center.

    5. Run Application

    Run your .NET Core API Application from Visual Studio and you can see the application has updated here.

    Run Application

    6. Testing

    Testing Microservice Using Postman:

    Running the application will also launch the application in the browser with URL below which comes from the ValuesController.cs controller class.

    • Let’s update the second method to return a specific value in our controller class to return a value we pass instead of the string “value”.
    • Update the code below
    • Testing
    • Here we can update the other action methods also, which are harder to test in the browser as the browser typically takes GET requests and they can only send post requests if we set up a form.
    • Instead, we can use a simple tool called Postman for sending HTTP requests to your APIs and you can see how those actions actually work.
    • It is a free community tool and you can get it form https://www.getpostman.com/.
    • Download and install Postman add the URL appended with the test value and submit a GET request and you can get the result as expected.
    • Testing
    • In the same method, you can test for other action methods also by putting breakpoints or writing the action methods.
    • For that, you may need to change the body form data to raw JSON data.
    • Testing
    Conclusion

    So, in this tutorial, we built a Microservice with ASP.NET Core using Azure Service Fabric and tested it using Postman. Your valuable feedback or comments about this article are always welcome. Mastering the.Net Microservices training program enabled you to learn. How to implement Microservices architecture in your existing projects and upcoming projects with confidence.

    FAQs

    Q1. Is ASP.NET Core good for microservices?

    One of the reasons ASP.NET Core is popular among developers is its compatibility with microservices

    Q2. Which API gateway is best for microservices .NET Core?

    Ocelot is an open-source API Gateway for . NET designed to work with microservices architectures.
    Share Article

    Live Classes Schedule

    Our learn-by-building-project method enables you to build practical/coding experience that sticks. 95% of our learners say they have confidence and remember more when they learn by building real world projects.
    .NET Solution Architect Certification Training Jul 28 SAT, SUN
    Filling Fast
    05:30PM to 07:30PM (IST)
    Get Details
    Microsoft Azure Cloud Architect Aug 11 SAT, SUN
    Filling Fast
    03:00PM to 05:00PM (IST)
    Get Details

    Can't find convenient schedule? Let us know

    About Author
    Mohammed Ramees P (An Author and Corporate Trainer)

    Passionate Youth Training Professional with strong computer science background and a passion for mentoring and sharing expertise with others on various technologies. Started as Microsoft Student Partner while being in campus, he has been part of Microsoft Certified Trainer in 2015 and Microsoft Most Valuable Professional awardees in 2016. A motivational and engaging public speaker, with experience and creativity to develop interactive programs that maximize adoption of complex technologies to students with diverse skills levels.
    Accept cookies & close this