<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Microservices topics</title>
    <link>https://techcommunity.microsoft.com/t5/microservices/bd-p/microservices</link>
    <description>Microservices topics</description>
    <pubDate>Sun, 05 Apr 2026 08:20:45 GMT</pubDate>
    <dc:creator>microservices</dc:creator>
    <dc:date>2026-04-05T08:20:45Z</dc:date>
    <item>
      <title>Just built my first microservice API, and it's hacky.  Any examples to follow?</title>
      <link>https://techcommunity.microsoft.com/t5/microservices/just-built-my-first-microservice-api-and-it-s-hacky-any-examples/m-p/4435963#M33</link>
      <description>&lt;P&gt;I just finished building my first microservices-based API, and it's ugly.&amp;nbsp; Are there any online source examples that include two (or more) API microservices communicating with each other over a message bus, that also include authentication using both a local authentication database and/or OpenID Connect?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jul 2025 22:54:35 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microservices/just-built-my-first-microservice-api-and-it-s-hacky-any-examples/m-p/4435963#M33</guid>
      <dc:creator>johnson_earls</dc:creator>
      <dc:date>2025-07-23T22:54:35Z</dc:date>
    </item>
    <item>
      <title>Moving to microservices from a monolithic environment</title>
      <link>https://techcommunity.microsoft.com/t5/microservices/moving-to-microservices-from-a-monolithic-environment/m-p/4361344#M31</link>
      <description>&lt;P&gt;We are looking at migrating our application to Azure instead of having it hosted at each client site.&lt;/P&gt;&lt;P&gt;Some of the processing is done through data events which looks to be pretty straight forward.&lt;/P&gt;&lt;P&gt;The issue we have is the time-based events that happen periodically.&amp;nbsp; Everything I've read thus far doesn't seem to have information if it's possible to use a time-based event to trigger processing.&lt;/P&gt;&lt;P&gt;Does anyone know if this is possible and if so, how it's accomplished?&lt;/P&gt;</description>
      <pubDate>Mon, 30 Dec 2024 19:27:56 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microservices/moving-to-microservices-from-a-monolithic-environment/m-p/4361344#M31</guid>
      <dc:creator>Scott_Johnson195</dc:creator>
      <dc:date>2024-12-30T19:27:56Z</dc:date>
    </item>
    <item>
      <title>Question about Kubernetes Deployment tutorial on Microsoft Learn</title>
      <link>https://techcommunity.microsoft.com/t5/microservices/question-about-kubernetes-deployment-tutorial-on-microsoft-learn/m-p/4298722#M30</link>
      <description>&lt;P&gt;I am going through the tutorial Module on Microsoft Learn titled "Deploy a .NET Microservice to Kubernetes" and am on the third unit located here: &lt;A class="lia-external-url" href="https://learn.microsoft.com/en-us/training/modules/dotnet-deploy-microservices-kubernetes/3-exercise-push-to-docker-hub" target="_blank"&gt;https://learn.microsoft.com/en-us/training/modules/dotnet-deploy-microservices-kubernetes/3-exercise-push-to-docker-hub&lt;/A&gt;. I am stuck under the "Verify the Docker images by creating containers in the codespace" heading on the fourth step. It tells you to select the port for the front end and open the service in a browser. However, there were no ports here that the step seemed to suggest were already there and I had to set it up. Given that the port for the frontend service of this tutorial is 32000:8080 according to the docker-compose.yml file for this tutorial project, is this what I should put in the ports tab? If so, the service does not display in my browser when I click on the globe icon as instructed by the tutorial and all I see is an HTTP 502 message. What should I do so that I can view the service? The repository for this tutorial service is located at &lt;A class="lia-external-url" href="https://github.com/MicrosoftDocs/mslearn-dotnet-cloudnative" target="_blank"&gt;https://github.com/MicrosoftDocs/mslearn-dotnet-cloudnative&lt;/A&gt; in the dotnet-kubernetes folder and I have attached images as well of the discussed configuration and error message below:&lt;/P&gt;&lt;img /&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 23:09:59 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microservices/question-about-kubernetes-deployment-tutorial-on-microsoft-learn/m-p/4298722#M30</guid>
      <dc:creator>KevinR91</dc:creator>
      <dc:date>2024-11-15T23:09:59Z</dc:date>
    </item>
    <item>
      <title>How to increase the timeout of a Invoke-WebRequest call either globally or in web.config?</title>
      <link>https://techcommunity.microsoft.com/t5/microservices/how-to-increase-the-timeout-of-a-invoke-webrequest-call-either/m-p/4228836#M27</link>
      <description>&lt;P&gt;If your program uses the now legacy API `System.Net.HttpWebRequest` and that `HttpWebRequest` throws a `System.Net.WebException` that reads `The operation has timed out`&lt;/P&gt;&lt;P&gt;Is it possible to change the timeout property in the System.Net.WebException via a web.config file by adding the correct add element name and value attribute?&lt;/P&gt;&lt;P&gt;Or possibly change it globally using the registry or a GPO?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I have already been advised to fix this using netsh http retries and some other settings and truth be told the issue could be on the opposite end of the connection where it also could be timing out; but it is unclear how to find that out.&lt;/P&gt;&lt;P&gt;The error looks like this:&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;PRE&gt;System&lt;SPAN class=""&gt;.Net.WebException: The operation has timed out.
  at System.Net.HttpWebRequest.GetRequestStream(TransportContext&amp;amp; context)
  at System.Net.HttpWebRequest.GetRequestStream()
  at System.WebServices.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
  ....&lt;/SPAN&gt;&lt;/PRE&gt;&lt;DIV class=""&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am running a web-services based .NET application; it like most .NET web-based applications has an XML configuration file in which you can specify &amp;lt;add key="some-keyname" value="some-valuename" /&amp;gt;.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;After the application reaches out to the enterprise server with a webservices request; eventually it times out; but the error message does not make it clear if we are talking about a timeout that comes from the enterprise server end or if the timeout is coming from the client end on the machines that I work on and can control.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;It simply says in a dialog box that pops up with a title that reads Error&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;PRE&gt;System.Net.WebException: The operation has timed &lt;SPAN class=""&gt;out&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;(again, it doesn’t specify if the time out came from my end or the enterprise end)…and it goes on…with the rest of the stack trace to tell us where the exception came from:&lt;/P&gt;&lt;PRE&gt;at System&lt;SPAN class=""&gt;.Net.HttpWebRequest.GetRequestStream(TransportContext&amp;amp; context)
at System.Net.HttpWebRequest.GetRequestStream()
at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
at EGatewayClientCE.EGatewayService.BDSWse.ProcessDimeRequest()
...etc&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 26 Aug 2024 16:22:02 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microservices/how-to-increase-the-timeout-of-a-invoke-webrequest-call-either/m-p/4228836#M27</guid>
      <dc:creator>helpdeskaleer</dc:creator>
      <dc:date>2024-08-26T16:22:02Z</dc:date>
    </item>
    <item>
      <title>How to achieve Multiversioning/Backward compatability for Dotnet 8. APIs?</title>
      <link>https://techcommunity.microsoft.com/t5/microservices/how-to-achieve-multiversioning-backward-compatability-for-dotnet/m-p/4159103#M20</link>
      <description>&lt;P&gt;&lt;SPAN&gt;What is the effective way in achieving "Multiversioning, Versioning, Backward compatability" for Dotnet 8.0 APIs . These APIs are going to be deployed AKS cluster as microservices.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jun 2024 04:32:30 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microservices/how-to-achieve-multiversioning-backward-compatability-for-dotnet/m-p/4159103#M20</guid>
      <dc:creator>Harsha0803</dc:creator>
      <dc:date>2024-06-04T04:32:30Z</dc:date>
    </item>
    <item>
      <title>Open Source Microservices Platform Now Available</title>
      <link>https://techcommunity.microsoft.com/t5/microservices/open-source-microservices-platform-now-available/m-p/4151142#M19</link>
      <description>&lt;P&gt;Hello! I have recently published a new open source microservices platform on GitHub. It is available under the MIT permissive license and is free to use for commercial purposes. I'm asking the .NET community for some help.&amp;nbsp;&lt;A href="https://ServiceBricks.com" target="_blank" rel="noopener"&gt;https://ServiceBricks.com&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am currently BETA testing and I'm looking for developers and architects to help me with the final push to make it production ready. I could use another set of eyes to help shore up the last remaining bits.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ServiceBricks&amp;nbsp;&lt;SPAN&gt;is a powerful platform designed to streamline the development, deployment, and maintenance of distributed systems. It provides domain-driven design, event-based architecture and a wealth of features to rapidly build new microservices and application quickly.&amp;nbsp;&lt;/SPAN&gt;Deploy single monoliths or distributed, multi-web applications using docker or kubernetes.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are several pre-built microservices to start from to build your own application infrastructures. They are also open source and all source code is available.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please drop me a line if you would like to help! I'm looking for discussions on microservices architecture and how they are implemented in code.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Danny&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2024 10:27:01 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microservices/open-source-microservices-platform-now-available/m-p/4151142#M19</guid>
      <dc:creator>holomodular</dc:creator>
      <dc:date>2024-05-24T10:27:01Z</dc:date>
    </item>
    <item>
      <title>.NET Aspire Vs. Service Mesh</title>
      <link>https://techcommunity.microsoft.com/t5/microservices/net-aspire-vs-service-mesh/m-p/4041835#M16</link>
      <description>&lt;P&gt;.NET Aspire has lots of overlap with Service Mesh on Kubernetes. like Istio.&lt;/P&gt;&lt;P&gt;But lack some features.&lt;/P&gt;&lt;P&gt;Was the intention to be a full Service Mesh?&lt;/P&gt;&lt;P&gt;Why I should use it, if I am using service mesh like Istio&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 03:47:38 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microservices/net-aspire-vs-service-mesh/m-p/4041835#M16</guid>
      <dc:creator>gkarwchan</dc:creator>
      <dc:date>2024-01-29T03:47:38Z</dc:date>
    </item>
    <item>
      <title>I want to create a web API in ASP.NET C# that needs to run scheduled jobs from the app.</title>
      <link>https://techcommunity.microsoft.com/t5/microservices/i-want-to-create-a-web-api-in-asp-net-c-that-needs-to-run/m-p/3740763#M15</link>
      <description>&lt;P&gt;Since, A and B are two different system altogether, there is no way to connect these two apps directly. So, I want to create my app in such a way that It will connect to an azure function and that azure function will act as a mediator that can get inputs(Payload) from the external system B and run the jobs of A. On this, the complexity of the Payload generation &amp;amp; API Call is shared by the Azure &amp;amp; On-premise EXE. The EXE will call the right Azure Job and the Job workflow is handled by Azure . Please help me the way to build the API/console app in C#.&lt;/P&gt;&lt;P&gt;Without Azure function, I am not getting any options to connect to any external app to get the payloads. Need to know about the way to connect to Azure so that azure can act as a mediator to connect these two external apps.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2023 09:57:27 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microservices/i-want-to-create-a-web-api-in-asp-net-c-that-needs-to-run/m-p/3740763#M15</guid>
      <dc:creator>Nikhil2803</dc:creator>
      <dc:date>2023-02-13T09:57:27Z</dc:date>
    </item>
    <item>
      <title>How to have dynamic Jittered Back-off for wait and retry in .Net core using polly</title>
      <link>https://techcommunity.microsoft.com/t5/microservices/how-to-have-dynamic-jittered-back-off-for-wait-and-retry-in-net/m-p/3583548#M10</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I am implementing wait and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://github.com/Polly-Contrib/Polly.Contrib.WaitAndRetry#new-jitter-recommendation" target="_blank" rel="nofollow noopener noreferrer"&gt;retry using jitter&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;see below. In the example below the delay is same.&lt;/P&gt;&lt;P&gt;How can I make delay dynamic?&lt;BR /&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;var&lt;/SPAN&gt; delay = Backoff.DecorrelatedJitterBackoffV2(medianFirstRetryDelay:TimeSpan.FromSeconds(&lt;SPAN class=""&gt;1&lt;/SPAN&gt;), retryCount: &lt;SPAN class=""&gt;3&lt;/SPAN&gt;);&lt;BR /&gt;&lt;SPAN class=""&gt;var&lt;/SPAN&gt; retryPolicy = Policy.Handle&amp;lt;FooException&amp;gt;().WaitAndRetryAsync(delay);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In my Project, I have Azure function&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://docs.microsoft.com/en-us/azure/azure-functions/functions-dotnet-dependency-injection" target="_blank" rel="nofollow noopener noreferrer"&gt;https://docs.microsoft.com/en-us/azure/azure-functions/functions-dotnet-dependency-injection&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;public&lt;/SPAN&gt; &lt;SPAN class=""&gt;class&lt;/SPAN&gt; &lt;SPAN class=""&gt;Startup&lt;/SPAN&gt; : &lt;SPAN class=""&gt;FunctionsStartup&lt;/SPAN&gt;
{
    &lt;SPAN class=""&gt;&lt;SPAN class=""&gt;public&lt;/SPAN&gt; &lt;SPAN class=""&gt;override&lt;/SPAN&gt; &lt;SPAN class=""&gt;void&lt;/SPAN&gt; &lt;SPAN class=""&gt;Configure&lt;/SPAN&gt;(&lt;SPAN class=""&gt;IFunctionsHostBuilder builder&lt;/SPAN&gt;)&lt;/SPAN&gt;
    {
        &lt;SPAN class=""&gt;var&lt;/SPAN&gt; configuration = builder.GetContext().Configuration;
        builder.Services.RegisterService(configuration);
    }
}&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;public&lt;/SPAN&gt; &lt;SPAN class=""&gt;static&lt;/SPAN&gt; IHttpClientBuilder &lt;SPAN class=""&gt;RegisterService&lt;/SPAN&gt;(&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;this&lt;/SPAN&gt; IServiceCollection serviceCollection,IConfiguration configuration&lt;/SPAN&gt;)&lt;/SPAN&gt;
{
    &lt;SPAN class=""&gt;return&lt;/SPAN&gt; serviceCollection.AddHttpClient&amp;lt;IService, Service()
               .AddPolicyHandler(RetryPolicyHandler.GetRetryPolicy())
}

&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;public&lt;/SPAN&gt; &lt;SPAN class=""&gt;static&lt;/SPAN&gt; IAsyncPolicy&amp;lt;HttpResponseMessage&amp;gt; &lt;SPAN class=""&gt;GetRetryPolicy&lt;/SPAN&gt;(&lt;SPAN class=""&gt;IConfiguration configuration&lt;/SPAN&gt;)&lt;/SPAN&gt;
{
    &lt;SPAN class=""&gt;var&lt;/SPAN&gt; delay =Backoff.DecorrelatedJitterBackoffV2(medianFirstRetryDelay: TimeSpan.FromSeconds(&lt;SPAN class=""&gt;1&lt;/SPAN&gt;), retryCount: &lt;SPAN class=""&gt;3&lt;/SPAN&gt;);
    &lt;SPAN class=""&gt;return&lt;/SPAN&gt; HttpPolicyExtensions.HandleTransientHttpError().WaitAndRetryAsync(delay);
}&lt;/PRE&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;If you see the update code. Startup class override configure method that call register service&amp;gt;RetryPolicy.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;Startup-&amp;gt; Configure-&amp;gt; Register Service -&amp;gt; RetryPolicy &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;My understanding is RetryPolicy will be called once (function startup) that will set the delay duration. Correct me if I am wrong? &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;Sorry I am new to polly and github wiki does not have this information.How can I make delay dynamic?Please advice. Thanks&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 27 Jul 2022 12:03:01 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microservices/how-to-have-dynamic-jittered-back-off-for-wait-and-retry-in-net/m-p/3583548#M10</guid>
      <dc:creator>coder1232045</dc:creator>
      <dc:date>2022-07-27T12:03:01Z</dc:date>
    </item>
    <item>
      <title>OneDrive Sync Folder shows processing changes</title>
      <link>https://techcommunity.microsoft.com/t5/microservices/onedrive-sync-folder-shows-processing-changes/m-p/3078142#M9</link>
      <description>&lt;P&gt;I have installed the latest semi annual version for OneDrive sync client&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Some folders in the OneDrive sync folder shows processing changes under status. When the folder is opened, all files in the folder are completely synced. There are no temp files or hidden files in such folders, yet the sync status for this folders show processing changes.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I followed guidelines in this KBI &amp;lt;&lt;A href="https://support.microsoft.com/en-us/office/onedrive-is-stuck-on-sync-pending-4aad2094-7cf2-4b04-9451-10f16144376c" target="_blank" rel="noopener"&gt;OneDrive is stuck on "Sync pending" (microsoft.com)&lt;/A&gt;&amp;gt; to create a new folder, copy all files in the affected folder to the new folder and this resolved the issue; the processing change symbol was replaced by a cloud symbol.&lt;BR /&gt;&lt;BR /&gt;However, this issue affects many folders of almost all users of OneDrive for business in my tenant and most of these users are very busy and cannot create new folders and move or copy the contents into a new folder to resolve the issue each time its happens. This issue may look very simple but it is an issue that creates confusion in the minds of users as they doubt if their files have actually synced to their OneDrive accounts in the cloud.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Is there an alternate way I can fix this issue in my Tenant for all the users.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jan 2022 08:09:34 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microservices/onedrive-sync-folder-shows-processing-changes/m-p/3078142#M9</guid>
      <dc:creator>Frederick_2101</dc:creator>
      <dc:date>2022-01-28T08:09:34Z</dc:date>
    </item>
    <item>
      <title>TTS</title>
      <link>https://techcommunity.microsoft.com/t5/microservices/tts/m-p/3062874#M7</link>
      <description>&lt;P&gt;Can you help?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://answers.microsoft.com/en-us/windows/forum/windows_11-wintop_language/ivona-not-show-in-default-voices-and-heidi-not/30984d98-bbf9-4228-b917-661bb45235de?auth=1" target="_blank" rel="noopener"&gt;https://answers.microsoft.com/en-us/windows/forum/windows_11-wintop_language/ivona-not-show-in-default-voices-and-heidi-not/30984d98-bbf9-4228-b917-661bb45235de?auth=1&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jan 2022 10:53:35 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microservices/tts/m-p/3062874#M7</guid>
      <dc:creator>Honvai</dc:creator>
      <dc:date>2022-01-16T10:53:35Z</dc:date>
    </item>
    <item>
      <title>Authorisation and authentication API</title>
      <link>https://techcommunity.microsoft.com/t5/microservices/authorisation-and-authentication-api/m-p/3032163#M6</link>
      <description>&lt;P&gt;Hi all, I am working on a project that with a team of developers from other platforms. I am supposed to create two separate&amp;nbsp; Api end points for authentication and authorization for customers and staffs, there will be a super admin who will created by default and who will subsequently assign roles to other staffs. I am actually new to dotnetcore and really needs help urgently to tarcle this problem. I will appreciate ant help from anyone. THank you&lt;/P&gt;</description>
      <pubDate>Mon, 06 Dec 2021 23:13:19 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microservices/authorisation-and-authentication-api/m-p/3032163#M6</guid>
      <dc:creator>Excel_1177</dc:creator>
      <dc:date>2021-12-06T23:13:19Z</dc:date>
    </item>
    <item>
      <title>.net6 如何实现IOC,AOP,Auth2，嵌入</title>
      <link>https://techcommunity.microsoft.com/t5/microservices/net6-%E5%A6%82%E4%BD%95%E5%AE%9E%E7%8E%B0ioc-aop-auth2-%E5%B5%8C%E5%85%A5/m-p/2968041#M4</link>
      <description>&lt;P&gt;.net6 如何实现IOC,AOP,Auth2，嵌入&lt;/P&gt;</description>
      <pubDate>Tue, 16 Nov 2021 02:19:14 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microservices/net6-%E5%A6%82%E4%BD%95%E5%AE%9E%E7%8E%B0ioc-aop-auth2-%E5%B5%8C%E5%85%A5/m-p/2968041#M4</guid>
      <dc:creator>kafeinanshi</dc:creator>
      <dc:date>2021-11-16T02:19:14Z</dc:date>
    </item>
    <item>
      <title>Any Service Fabric Evangelists still out there?</title>
      <link>https://techcommunity.microsoft.com/t5/microservices/any-service-fabric-evangelists-still-out-there/m-p/2932769#M1</link>
      <description>We are heavily invested in Service Fabric and all our new microservices are built on top of SF. We use about 70% of the capabilities of SF.&lt;BR /&gt;&lt;BR /&gt;I sometimes feel we are the only ones left, and the rest have either headed over to Kube or another orchestrator.&lt;BR /&gt;&lt;BR /&gt;Please let me know if you still feel SF was the right choice for your product, and if not what have you replaced it with?</description>
      <pubDate>Fri, 05 Nov 2021 20:05:52 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microservices/any-service-fabric-evangelists-still-out-there/m-p/2932769#M1</guid>
      <dc:creator>Stoepatjie</dc:creator>
      <dc:date>2021-11-05T20:05:52Z</dc:date>
    </item>
  </channel>
</rss>

