Click here to Skip to main content
15,885,782 members
Everything / Hosted Services / Microservices

Microservices

Microservices

Great Reads

by Nicolas DESCARTES
How to write resilient .NET applications ?
by Taiseer Joudeh
Part 1 of a 10 post tutorial where we will build a full microservices app using Dapr and then deploy it to Azure Container Apps
by Nicolas DESCARTES
Comprehending the CQRS architecture and learning how to implement it
by Michael Yuan @WasmEdge
How to create lightweight and high-performance web services in the WebAssembly sandbox, and then deploy them for free on edge cloud provider fly.io.

Latest Articles

by Nicolas DESCARTES
Understanding more advanced concepts in GraphQL with HotChocolate
by Gerardo Recinto
Scaleable Objects Persistence, a Micro Service companion database engine, i.e., a code library
by Nicolas DESCARTES
Comprehending the CQRS architecture and learning how to implement it
by Nicolas DESCARTES
How to write resilient .NET applications ?

All Articles

Sort by Score

Microservices 

22 Jan 2024 by Nicolas DESCARTES
How to write resilient .NET applications ?
8 Sep 2022 by Taiseer Joudeh
Part 1 of a 10 post tutorial where we will build a full microservices app using Dapr and then deploy it to Azure Container Apps
24 Jan 2024 by Nicolas DESCARTES
Comprehending the CQRS architecture and learning how to implement it
5 Jan 2023 by Michael Yuan @WasmEdge
How to create lightweight and high-performance web services in the WebAssembly sandbox, and then deploy them for free on edge cloud provider fly.io.
21 Jun 2023 by Richard MacCutchan
Go to https://spring.io/projects/spring-boot[^] and start learning.
8 May 2021 by Manish Kumar Namdev
I am looking for some expert and right advice to begin work on a POC to make a decision on Microservices with DotNet Core development to deployment. POC concept: Customer will choose some products, make order, apply discount, then payment....
8 May 2021 by RickZeeland
Maybe you can find some answers here: resources-to-learn-about-docker-deployment[^] I tried to find information too some time ago, but sadly ended up with a big headache. The most useful resource seems to be this free Ebook:...
21 Jun 2021 by Richard Deeming
Based on the code you have provided, the response body is encoded as JSON[^]. You use ReadAsBytesAsync to load the response into an array of bytes. You could alternatively use ReadAsStringAsync to get a string, or ReadAsStreamAsync to get a...
30 Jun 2021 by vaibhav1800
Lets suppose I have 4 Microservices (4 webapi projects -> A,B,C,D) 1) I right click on A Project- > Add Container Orchestor Support -> Next Window : Chose "Docker Compose" as Contaner Orchestorer -> Next Window : Target OS as Windows. 2)...
30 Dec 2022 by KGBRS
Quote: when I'm running the Dapr application I'm getting the following error dapr run --app-id testservice --app-port 5001 --dapr-http-port 50001 dotnet run msg=" error occurred while beginning pubsub pubsub: the server closed connection...
30 Dec 2022 by Sandeep Mewara
As mentioned here: Dapr pubsub using rabbitmq · Issue #659 · dapr/dotnet-sdk · GitHub[^] If you leave the Configure for HTTPS checkbox checked when you created the Project, the generated ASP.NET Core API project includes middleware to redirect...
27 Feb 2023 by Member 11242959
Hi All, Need your suggestion on below mentioned scenario. We are developing microservices where azure service bus is used to communicate between different services. All write operations are handled asynchronously using azure service bus queue....
30 Jan 2024 by Gerardo Recinto
Scaleable Objects Persistence, a Micro Service companion database engine, i.e., a code library
3 Aug 2021 by Yaseer Mumtaz
ASP.NET Core Microservices With Angular 11 Front End, API Gateway, Redis and SQL Server
7 Mar 2024 by Nicolas DESCARTES
Understanding more advanced concepts in GraphQL with HotChocolate
11 Jun 2023 by minnon dumbo
I need to get the product repository (where i added a query to fetch productname with I'd because we can't fetch from transaction table ) calling that method into transaction controller response(so that i can show productname in my response) can...
11 Jun 2023 by Andre Oosthuizen
1. From what I can see, in your repository your method name is defined as 'getproductName', but in your entity class, you are using 'getProductName', the naming must be identical, update your repository method to - String...
21 Jun 2023 by minnon dumbo
I wanted to create a event for customer to for receiving the OTP pop if he wanted to agree he need to click on approve or else reject i need to write functionality for cab some one help me out? What I have tried: Itss completely a new things...
22 Jun 2023 by mtoha
you can go to here and search springboot api and try some tutorials at home. You can break this question to smaller parts later. create new topic when facing some issues.
21 Jun 2021 by vaibhav1800
I have this code below which calls a MicroService called "RydoService" which returns a HttpResponse containing the data stored in "response". First Question : Is the content in the response serialized ? If yes, then why do we need to use...
4 Aug 2022 by canvas_newbi
I have a collection of Groups and a collection of People (each Group or People have a unique ID). Group can hold X amount of People. I'm using the microservice methodology so my collections can't be linked together. I'm need to populate the array...