<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Disqus - Latest Comments for arezkiStoreFront</title><link>http://disqus.com/by/arezkiStoreFront/</link><description></description><atom:link href="http://disqus.com/arezkiStoreFront/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Tue, 08 Oct 2024 18:15:04 -0000</lastBuildDate><item><title>Re: Domain-Driven Design Fundamentals</title><link>https://pluralsight.com/courses/fundamentals-domain-driven-design#comment-6566653408</link><description>&lt;p&gt;Hi, I tried to run the application and did not manage to get it to work.&lt;/p&gt;&lt;p&gt;I added the the appropriate nuget package and installed RabbitMQ and paper cut; both worked.  I opened the front desk solution and ran the FrontDesk.Api and it was successful.&lt;br&gt;I then right clicked on FrontDesk.Blazor, select debug and create a new instance and after 30 seconds I got: ProcessId 3952 is not running. Any idea on how to troubleshoot this problem.&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Tue, 08 Oct 2024 18:15:04 -0000</pubDate></item><item><title>Re: Accessing APIs Using HttpClient in .NET 6</title><link>https://pluralsight.com/courses/dot-net-6-httpclient-using-accessing-apis#comment-6325422035</link><description>&lt;p&gt;Hi Kevin,&lt;/p&gt;&lt;p&gt;Awesome as always, a small question I unzipped the exercises file and in folder  5 end.&lt;/p&gt;&lt;p&gt;In the class PartialUpdatesSamples, you have a method PatchResourceShortcutAsync&lt;/p&gt;&lt;p&gt;&lt;code&gt;&lt;br&gt;  public async Task PatchResourceShortcutAsync()&lt;br&gt; {&lt;br&gt;    var httpClient = _httpClientFactory.CreateClient("MoviesAPIClient");&lt;br&gt;    //more code here ...&lt;br&gt; }&lt;br&gt;&lt;/code&gt;&lt;/p&gt;&lt;p&gt;The fact that it is a named instance, httpClient is the same instance each time and let us assume that I modify code PatchResourceShortcutAsync to&lt;/p&gt;&lt;p&gt;&lt;code&gt;&lt;br&gt;public async Task PatchResourceShortcutAsync(string token)&lt;br&gt;{&lt;br&gt;    var httpClient = _httpClientFactory.CreateClient("MoviesAPIClient");&lt;br&gt;    httpClient.DefaultRequestHeaders.Add("Authorization",token);&lt;br&gt;&lt;br&gt;    //more code here ...&lt;br&gt;}&lt;br&gt;&lt;/code&gt;&lt;/p&gt;&lt;p&gt;If I have two separate thread that make a call to PatchResourceShortcutAsync with a different token, there would a threading issue ?&lt;br&gt;What I use is a SemaphoreSlim, as follows;&lt;/p&gt;&lt;p&gt;&lt;code&gt;&lt;br&gt;public class PartialUpdatesSamples&lt;br&gt;{&lt;br&gt;        private readonly SemaphoreSlim _semaphore = new SemaphoreSlim(1, 1);&lt;br&gt;       public async Task PatchResourceShortcutAsync(string token)&lt;br&gt;      {&lt;br&gt;              await _semaphore.WaitAsync();&lt;br&gt;&lt;br&gt;             try {&lt;br&gt;              var httpClient = _httpClientFactory.CreateClient("MoviesAPIClient");&lt;br&gt;              httpClient.DefaultRequestHeaders.Add("Authorization",token);&lt;br&gt;&lt;br&gt;               //more code here ...&lt;br&gt;             }&lt;br&gt;             finally {&lt;br&gt;                     _semaphore.Release(); &lt;br&gt;             }&lt;br&gt;       }&lt;br&gt;&lt;br&gt;}&lt;br&gt;&lt;/code&gt;&lt;/p&gt;&lt;p&gt;Do I need the _semaphore ?&lt;/p&gt;&lt;p&gt;Thanks&lt;br&gt;Regards&lt;br&gt;Jason&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Fri, 17 Nov 2023 07:11:03 -0000</pubDate></item><item><title>Re: Applied Classification with XGBoost</title><link>http://pluralsight.com/courses/applied-classification-xgboost#comment-6248003701</link><description>&lt;p&gt;Hi Matt,&lt;br&gt;Awesome course, do you have any links that details on how to implement XGBoost from scratch.&lt;br&gt;Thanks&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Sat, 05 Aug 2023 11:46:05 -0000</pubDate></item><item><title>Re: ASP.NET Core with the New MSBuild Based Tooling</title><link>http://pluralsight.com/courses/aspdotnet-core-msbuild-tooling#comment-5937501940</link><description>&lt;p&gt;Awesome course, I downloaded the exercises files and I cannot see an example solution project where one can run build.ps1 script to compile and publish the project.&lt;/p&gt;&lt;p&gt;Do you by any chance one or a link to blog showing a solution project that uses msbuild from the command line.&lt;/p&gt;&lt;p&gt;Thanks&lt;br&gt;Jason&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Thu, 04 Aug 2022 07:30:55 -0000</pubDate></item><item><title>Re: Building an End-to-end SPA Using ASP.NET Core 6 Web API and React</title><link>https://pluralsight.com/courses/asp-dot-net-core-6-web-api-react-building-end-to-end-spa#comment-5853570540</link><description>&lt;p&gt;Hi Roland,&lt;/p&gt;&lt;p&gt;Outstanding course, I hope you will add a course which covers unit testing of minimal APi with CQRS.&lt;/p&gt;&lt;p&gt;Jason&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Tue, 10 May 2022 15:36:03 -0000</pubDate></item><item><title>Re: Unit Testing an ASP.NET Core 6 Web API</title><link>https://pluralsight.com/courses/asp-dot-net-core-6-web-api-unit-testing#comment-5852358495</link><description>&lt;p&gt;Hi Kevin,&lt;/p&gt;&lt;p&gt;In the course do you cover how to unit test minimal API, in other words:&lt;/p&gt;&lt;p&gt;In the program.cs, we can have:&lt;/p&gt;&lt;p&gt;app.MapGet("customers", async (IMediator mediator) =&amp;gt; await mediator.Send(new GetAllCustomersRequest()));&lt;/p&gt;&lt;p&gt;Thanks&lt;br&gt;Jason&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Mon, 09 May 2022 12:29:00 -0000</pubDate></item><item><title>Re: Blazor: Getting Started </title><link>http://pluralsight.com/courses/getting-started-blazor#comment-5788316796</link><description>&lt;p&gt;Hi Gill,&lt;/p&gt;&lt;p&gt;I am using .Net 5, I solved my Issue by:&lt;br&gt;In the BethanysPieShopHRM.App program.cs&lt;/p&gt;&lt;p&gt;I have this builder.RootComponents.Add&amp;lt;app&amp;gt;("#app");&lt;br&gt;instead of builder.RootComponents.Add&amp;lt;app&amp;gt;("app");&lt;/p&gt;&lt;p&gt;and in the index.html page I have:&lt;/p&gt;&lt;p&gt; &amp;lt;div id="app"&amp;gt;Loading... current application&amp;lt;/div&amp;gt;&lt;/p&gt;&lt;p&gt;Instead of&lt;br&gt;&amp;lt;app&amp;gt;Loading...&amp;lt;/app&amp;gt;&lt;/p&gt;&lt;p&gt;The browser caches the index.html page so i needed to press&lt;br&gt;CTRL+F5&lt;/p&gt;&lt;p&gt;May be somebody might need this.&lt;/p&gt;&lt;p&gt;Awesome course :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Sun, 13 Mar 2022 12:04:09 -0000</pubDate></item><item><title>Re: Blazor: Getting Started </title><link>http://pluralsight.com/courses/getting-started-blazor#comment-5788159255</link><description>&lt;p&gt;Hi Gill,&lt;/p&gt;&lt;p&gt;In the Demo: Adding a Map&lt;/p&gt;&lt;p&gt;I am getting the following:&lt;/p&gt;&lt;p&gt;blazor.webassembly.js:1 crit: Microsoft.AspNetCore.Components.WebAssembly.Rendering.WebAssemblyRenderer[100]&lt;br&gt;      Unhandled exception rendering component: Could not find 'deliveryMap.showOrUpdate' ('deliveryMap' was undefined).&lt;br&gt;      Error: Could not find 'deliveryMap.showOrUpdate' ('deliveryMap' was undefined).&lt;br&gt;          at http://localhost:5000/_framework/blazor.webassembly.js:1:1287&lt;br&gt;          at Array.forEach (&amp;lt;anonymous&amp;gt;)&lt;br&gt;          at e.findFunction (http://localhost:5000/_framework/blazor.webassembly.js:1:1247)&lt;br&gt;          at b (http://localhost:5000/_framework/blazor.webassembly.js:1:2989)&lt;br&gt;          at http://localhost:5000/_framework/blazor.webassembly.js:1:3935&lt;br&gt;          at new Promise (&amp;lt;anonymous&amp;gt;)&lt;br&gt;          at Object.beginInvokeJSFromDotNet (http://localhost:5000/_framework/blazor.webassembly.js:1:3908)&lt;br&gt;          at Object.w [as invokeJSFromDotNet] (http://localhost:5000/_framework/blazor.webassembly.js:1:64006)&lt;br&gt;          at _mono_wasm_invoke_js_blazor (http://localhost:5000/_framework/dotnet.5.0.13.js:1:190800)&lt;br&gt;          at do_icall (wasm://wasm/00aba242:wasm-function[10596]:0x194e4e)&lt;/p&gt;&lt;p&gt;Any pointers:&lt;/p&gt;&lt;p&gt;I have added:&lt;/p&gt;&lt;p&gt;&amp;lt;script src="_framework/blazor.webassembly.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;br&gt;    &amp;lt;script src="_content/BethanysPieShopHRM.ComponentsLibrary/leaflet/leaflet.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;br&gt;    &amp;lt;script src="_content/BethanysPieShopHRM.ComponentsLibrary/deliveryMap.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;/p&gt;&lt;p&gt;and&lt;/p&gt;&lt;p&gt;&amp;lt;link href="_content/BethanysPieShopHRM.ComponentsLibrary/leaflet/leaflet.css" rel="stylesheet"/&amp;gt;&lt;/p&gt;&lt;p&gt;To the index.html&lt;/p&gt;&lt;p&gt;I have also added:&lt;/p&gt;&lt;p&gt;@using BethanysPieShopHRM.ComponentsLibrary&lt;br&gt;@using BethanysPieShopHRM.ComponentsLibrary.Map&lt;/p&gt;&lt;p&gt;To the import.razor&lt;/p&gt;&lt;p&gt;Any pointers?&lt;br&gt;Thanks&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Sun, 13 Mar 2022 09:02:16 -0000</pubDate></item><item><title>Re: Blazor: Getting Started </title><link>http://pluralsight.com/courses/getting-started-blazor#comment-5784491129</link><description>&lt;p&gt;Hi Gill,&lt;/p&gt;&lt;p&gt;I found a solution, I am adding it here in case it may help somebody. I am using http and not https. I have done the following:&lt;/p&gt;&lt;p&gt;In ConfigureServices, I commented:&lt;/p&gt;&lt;p&gt;//services.AddCors(options =&amp;gt;&lt;br&gt; //{&lt;br&gt;///    options.AddPolicy("Open", builder =&amp;gt; builder.AllowAnyOrigin().AllowAnyHeader().AllowAnyMethod());&lt;br&gt;//});&lt;/p&gt;&lt;p&gt;in Confugure  I also commented and added:&lt;/p&gt;&lt;p&gt;// app.UseCors("Open");&lt;br&gt;            app.UseCors(cors =&amp;gt; cors&lt;br&gt;                .AllowAnyMethod()&lt;br&gt;                .AllowAnyHeader()&lt;br&gt;                .SetIsOriginAllowed(origin =&amp;gt; true)&lt;br&gt;                .AllowCredentials()&lt;br&gt;            );&lt;/p&gt;&lt;p&gt;When I do an update it works.&lt;br&gt;Thanks for the course&lt;br&gt;Yaz&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Thu, 10 Mar 2022 03:43:40 -0000</pubDate></item><item><title>Re: Blazor: Getting Started </title><link>http://pluralsight.com/courses/getting-started-blazor#comment-5783357125</link><description>&lt;p&gt;Hi Gill,&lt;/p&gt;&lt;p&gt;Awesome course, I am half way through. I managed to call GetAllCustomers and Add a customer. However when I try and update a customer I get an error in the output window&lt;br&gt;Any pointers ?&lt;/p&gt;&lt;p&gt;info: System.Net.Http.HttpClient.IEmployeeDataService.LogicalHandler[100]&lt;br&gt;      Start processing HTTP request PUT http://localhost:5500/api/employee&lt;br&gt;info: System.Net.Http.HttpClient.IEmployeeDataService.ClientHandler[100]&lt;br&gt;      Sending HTTP request PUT http://localhost:5500/api/employee&lt;br&gt;Microsoft.AspNetCore.Hosting.Diagnostics: Information: Request starting HTTP/1.1 OPTIONS http://localhost:5500/api/employee - -&lt;br&gt;Microsoft.AspNetCore.Cors.Infrastructure.CorsService: Information: CORS policy execution successful.&lt;br&gt;Microsoft.AspNetCore.Hosting.Diagnostics: Information: Request finished HTTP/1.1 OPTIONS http://localhost:5500/api/employee - - - 204 - - 8.4859ms&lt;br&gt;crit: Microsoft.AspNetCore.Components.WebAssembly.Rendering.WebAssemblyRenderer[100]&lt;br&gt;      Unhandled exception rendering component: TypeError: Failed to fetch&lt;br&gt;System.Net.Http.HttpRequestException: TypeError: Failed to fetch&lt;br&gt;   at System.Net.Http.BrowserHttpHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)&lt;br&gt;   at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)&lt;br&gt;   at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)&lt;br&gt;   at System.Net.Http.HttpClient.SendAsyncCore(HttpRequestMessage request, HttpCompletionOption completionOption, Boolean async, Boolean emitTelemetryStartStop, CancellationToken cancellationToken)&lt;br&gt;   at BethanysPieShopHRM.App.Services.EmployeeDataService.UpdateEmployee(Employee employee) in C:\PluralSight\getting-started-blazor\_02\BethanysPieShopHRM\BethanysPieShopHRM.App\Services\EmployeeDataService.cs:line 64&lt;br&gt;   at BethanysPieShopHRM.App.Pages.EmployeeEdit.HandleValidSubmit() in C:\PluralSight\getting-started-blazor\_02\BethanysPieShopHRM\BethanysPieShopHRM.App\Pages\EmployeeEdit.cs:line 95&lt;br&gt;   at Microsoft.AspNetCore.Components.ComponentBase.CallStateHasChangedOnAsyncCompletion(Task task)&lt;br&gt;   at Microsoft.AspNetCore.Components.Forms.EditForm.HandleSubmitAsync()&lt;br&gt;   at Microsoft.AspNetCore.Components.ComponentBase.CallStateHasChangedOnAsyncCompletion(Task task)&lt;br&gt;   at Microsoft.AspNetCore.Components.RenderTree.Renderer.GetErrorHandledTask(Task taskToHandle)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Wed, 09 Mar 2022 04:38:44 -0000</pubDate></item><item><title>Re: Blazor: Getting Started </title><link>http://pluralsight.com/courses/getting-started-blazor#comment-5779906838</link><description>&lt;p&gt;Thanks Gill for the quick reply.&lt;br&gt;I had to start both web and api and I needed to change one of the port because both application where using port 5000. I also changed the httpclient base url. I ran both the web part and api as a console and it worked.&lt;/p&gt;&lt;p&gt;Thanks again&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Sun, 06 Mar 2022 07:41:46 -0000</pubDate></item><item><title>Re: Blazor: Getting Started </title><link>http://pluralsight.com/courses/getting-started-blazor#comment-5778749089</link><description>&lt;p&gt;Hi Gill,&lt;/p&gt;&lt;p&gt;I downloaded the code and opened the last solution, in other words&lt;/p&gt;&lt;p&gt;..\getting-started-blazor\07\demos\Demos\BethanysPieShopHRM.App.sln&lt;/p&gt;&lt;p&gt;When I click on get all clients I get the following:&lt;/p&gt;&lt;p&gt;I used the following code to get the string below:&lt;/p&gt;&lt;p&gt;var result = await _httpClient.GetAsync($"api/employee");&lt;/p&gt;&lt;p&gt;if(result.IsSuccessStatusCode)&lt;br&gt;{&lt;br&gt;      var responseString = await result.Content.ReadAsStringAsync();&lt;br&gt; }&lt;/p&gt;&lt;p&gt;'&lt;br&gt;&amp;lt;html&amp;gt;&lt;br&gt;	&amp;lt;head&amp;gt;&lt;br&gt;		&amp;lt;meta charset="utf-8"/&amp;gt;&lt;br&gt;			&amp;lt;meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/&amp;gt;&lt;br&gt;		&amp;lt;title&amp;gt;BethanysPieShopHRM.App&amp;lt;/title&amp;gt;&lt;br&gt;			&amp;lt;base href="/"/&amp;gt;&lt;br&gt;				&amp;lt;link href="css/bootstrap/bootstrap.min.css" rel="stylesheet"/&amp;gt;&lt;br&gt;				&amp;lt;link href="css/app.css" rel="stylesheet"/&amp;gt;&lt;br&gt;				&amp;lt;link href="BethanysPieShopHRM.App.styles.css" rel="stylesheet"/&amp;gt;&lt;br&gt;				&amp;lt;script src="&lt;a href="https://kit.fontawesome.com/273d0585ea.js" rel="nofollow noopener" target="_blank" title="https://kit.fontawesome.com/273d0585ea.js"&gt;https://kit.fontawesome.com...&lt;/a&gt;" …"stylesheet"=""/&amp;gt;&lt;br&gt;			&amp;lt;/head&amp;gt;&lt;br&gt;				&amp;lt;body&amp;gt;&lt;br&gt;				&amp;lt;app&amp;gt;Loading...&amp;lt;/app&amp;gt;&lt;br&gt;				&amp;lt;div id="blazor-error-ui"&amp;gt;&lt;br&gt;			An unhandled error has occurred.&lt;br&gt;			&lt;a href="" rel="nofollow noopener" target="_blank" title=""&gt;Reload&lt;/a&gt;\r\n        &lt;a&gt;🗙&lt;/a&gt;\r\n    &amp;lt;/div&amp;gt;\r\n    &amp;lt;script src="_framework/blazor.webassembly.js"&amp;gt;&amp;lt;/script&amp;gt;\r\n    &amp;lt;script src="_content/BethanysPieShopHRM.ComponentsLibrary/leaflet/leaflet.js"&amp;gt;&amp;lt;/script&amp;gt;\r\n    &amp;lt;script src="_content/BethanysPieShopHRM.ComponentsLibrary/deliveryMap.js"&amp;gt;&amp;lt;/script&amp;gt;\r\n&amp;lt;/body&amp;gt;\r\n\r\n&amp;lt;/html&amp;gt;\r\n'&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Sat, 05 Mar 2022 05:24:12 -0000</pubDate></item><item><title>Re: Angular Security Using .NET 5 and JSON Web Tokens</title><link>https://pluralsight.com/courses/angular-security-json-web-tokens-dot-net-five#comment-5602284286</link><description>&lt;p&gt;Thanks for letting me know. The listeners need to know that using local storage in production is not secure.&lt;br&gt;HttpOnly is setup on the server side.&lt;br&gt;J&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Tue, 09 Nov 2021 10:09:49 -0000</pubDate></item><item><title>Re: Angular Security Using .NET 5 and JSON Web Tokens</title><link>https://pluralsight.com/courses/angular-security-json-web-tokens-dot-net-five#comment-5602023109</link><description>&lt;p&gt;Hi Paul,&lt;/p&gt;&lt;p&gt;I have not had time to go through the course. I only looked at the Table of contents. One small question, in the UI (Angular) where do you store your access tokens ?&lt;br&gt;I cannot see any mention of HttpOnly which to my knowledge is the best way to store the access tokens.&lt;/p&gt;&lt;p&gt;Thanks&lt;br&gt;Jason&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Tue, 09 Nov 2021 04:45:30 -0000</pubDate></item><item><title>Re: Securing Angular Apps with OpenID and OAuth2</title><link>http://pluralsight.com/courses/openid-and-oauth2-securing-angular-apps#comment-5439294153</link><description>&lt;p&gt;Hi Brian,&lt;/p&gt;&lt;p&gt;Excellent course, in module 3 you set response_type = "code" so that we could use PKCE. However, I cannot see how you sent the code_challlenge so that the token is retuned via the backchannel.&lt;br&gt;Do I need to send the code_challenge or does it happen automatically because response_type = "code".&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Wed, 30 Jun 2021 16:47:45 -0000</pubDate></item><item><title>Re: Fundamentals of Docker and Kubernetes for .NET Developers</title><link>https://pluralsight.com/courses/docker-kubernetes-dot-net-developers-fundamentals#comment-5424424442</link><description>&lt;p&gt;Excellent&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Fri, 18 Jun 2021 10:15:59 -0000</pubDate></item><item><title>Re: Fundamentals of Docker and Kubernetes for .NET Developers</title><link>https://pluralsight.com/courses/docker-kubernetes-dot-net-developers-fundamentals#comment-5423133609</link><description>&lt;p&gt;Thank you very much for all your replies, awesome course and I will look forward to getting the starter versions of the yaml files and have a good vacation Jason&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Thu, 17 Jun 2021 09:18:15 -0000</pubDate></item><item><title>Re: Fundamentals of Docker and Kubernetes for .NET Developers</title><link>https://pluralsight.com/courses/docker-kubernetes-dot-net-developers-fundamentals#comment-5422986748</link><description>&lt;p&gt;Hi Erik,&lt;/p&gt;&lt;p&gt;Is it possible to add the start yaml files so that we could follow along and do the labs in module 8.&lt;/p&gt;&lt;p&gt;Thanks&lt;br&gt;Jason&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Thu, 17 Jun 2021 06:15:09 -0000</pubDate></item><item><title>Re: Fundamentals of Docker and Kubernetes for .NET Developers</title><link>https://pluralsight.com/courses/docker-kubernetes-dot-net-developers-fundamentals#comment-5422967631</link><description>&lt;p&gt;I think it because I used yaml version in the project.&lt;/p&gt;&lt;p&gt;I still cannot access at &lt;a href="http://seq.local.com" rel="nofollow noopener" target="_blank" title="seq.local.com"&gt;seq.local.com&lt;/a&gt;&lt;/p&gt;&lt;p&gt;When you created a secret while deploying identity server, where can I find the scripts you used ?&lt;/p&gt;&lt;p&gt;Thanks&lt;br&gt;Jason&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Thu, 17 Jun 2021 05:41:03 -0000</pubDate></item><item><title>Re: Fundamentals of Docker and Kubernetes for .NET Developers</title><link>https://pluralsight.com/courses/docker-kubernetes-dot-net-developers-fundamentals#comment-5422952625</link><description>&lt;p&gt;Hi Erik,&lt;/p&gt;&lt;p&gt;In the last module I followed the steps and then and I type:&lt;br&gt;k get all I get the following:&lt;br&gt; &lt;a href="https://uploads.disquscdn.com/images/f4ea8d9f2af9258bdf7608153acd6e72945fa78632e190afe0b1089e681ff18d.png" rel="nofollow noopener" target="_blank" title="https://uploads.disquscdn.com/images/f4ea8d9f2af9258bdf7608153acd6e72945fa78632e190afe0b1089e681ff18d.png"&gt;https://uploads.disquscdn.c...&lt;/a&gt;&lt;/p&gt;&lt;p&gt;the service/globomail-service and service/globoseq-service Ports are not the same as yours 31534 is missing.&lt;/p&gt;&lt;p&gt;How can I troubleshoot this ?&lt;/p&gt;&lt;p&gt;Thanks&lt;br&gt;Jason&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Thu, 17 Jun 2021 05:12:06 -0000</pubDate></item><item><title>Re: Fundamentals of Docker and Kubernetes for .NET Developers</title><link>https://pluralsight.com/courses/docker-kubernetes-dot-net-developers-fundamentals#comment-5422466333</link><description>&lt;p&gt;Thank you very much&lt;/p&gt;&lt;p&gt;Is it possible to get yml for core and api project  in your github repo ?&lt;br&gt;Alternatively, I could write them and you could correct me.&lt;/p&gt;&lt;p&gt;One more question, when you deployed identity server, you pushed the image to docker registry. If I wanted to use&lt;br&gt;my local images, can I use:&lt;/p&gt;&lt;p&gt;imagePullPolicy: IfNotPresent inside my yml file&lt;/p&gt;&lt;p&gt;Do you have a working example ?.&lt;/p&gt;&lt;p&gt;Thanks&lt;br&gt;Jason&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Wed, 16 Jun 2021 17:17:12 -0000</pubDate></item><item><title>Re: Fundamentals of Docker and Kubernetes for .NET Developers</title><link>https://pluralsight.com/courses/docker-kubernetes-dot-net-developers-fundamentals#comment-5422047547</link><description>&lt;p&gt;Hi Erik,&lt;/p&gt;&lt;p&gt;In the Program.cs&lt;/p&gt;&lt;p&gt;Identity Server Project&lt;br&gt;...&lt;br&gt; .WriteTo.Seq("http://globoseq"); ;&lt;/p&gt;&lt;p&gt;Core Project&lt;br&gt;...&lt;br&gt; .WriteTo.Seq("http://globoseq"); ;&lt;/p&gt;&lt;p&gt;API Project&lt;br&gt;...&lt;/p&gt;&lt;p&gt; .WriteTo.Seq("http://globoseq:5341"); ;&lt;/p&gt;&lt;p&gt;In the Docker-Compose&lt;/p&gt;&lt;p&gt;- "5342:80"&lt;/p&gt;&lt;p&gt;In this correct ?&lt;/p&gt;&lt;p&gt;Thanks&lt;br&gt;Jason&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Wed, 16 Jun 2021 11:35:42 -0000</pubDate></item><item><title>Re: Fundamentals of Docker and Kubernetes for .NET Developers</title><link>https://pluralsight.com/courses/docker-kubernetes-dot-net-developers-fundamentals#comment-5421737868</link><description>&lt;p&gt;Hi Erik,&lt;/p&gt;&lt;p&gt;In Module 7 (Adding a Database to Docker Compose)&lt;br&gt;in SQL folder &lt;a href="http://setup.sh" rel="nofollow noopener" target="_blank" title="setup.sh"&gt;setup.sh&lt;/a&gt;&lt;/p&gt;&lt;p&gt;./&lt;a href="http://wait-for-it.sh" rel="nofollow noopener" target="_blank" title="wait-for-it.sh"&gt;wait-for-it.sh&lt;/a&gt; globosql:1433 --timeout=0 --strict -- sleep 5s &amp;amp;&amp;amp; \&lt;br&gt;/opt/mssql-tools/bin/sqlcmd -S localhost -i InitializeGlobomanticsDb.sql -U sa -P "$SA_PASSWORD"&lt;/p&gt;&lt;p&gt;"$SA_PASSWORD"&lt;/p&gt;&lt;p&gt;Do we need to put the password itself like "Sqlc0ntainersFTW!" as specified in the docker compose or leave it as is and it gets pulled from the docker compose ?&lt;/p&gt;&lt;p&gt;Thanks&lt;br&gt;Jason&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Wed, 16 Jun 2021 06:13:16 -0000</pubDate></item><item><title>Re: Fundamentals of Docker and Kubernetes for .NET Developers</title><link>https://pluralsight.com/courses/docker-kubernetes-dot-net-developers-fundamentals#comment-5421691376</link><description>&lt;p&gt;I used localhost, 1434 and it works :)&lt;br&gt;I have noticed you also type localhost, 1434. I thought you had typed localhost:1434 my bad.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Wed, 16 Jun 2021 04:50:13 -0000</pubDate></item><item><title>Re: Fundamentals of Docker and Kubernetes for .NET Developers</title><link>https://pluralsight.com/courses/docker-kubernetes-dot-net-developers-fundamentals#comment-5421679937</link><description>&lt;p&gt;I am using the labs and things are working, Awesome course.&lt;/p&gt;&lt;p&gt;I am on Module 7, connecting to the database&lt;br&gt;for sqlexpress, I use MachineName\SQLEXPRESS and it works&lt;br&gt;I cannot manage to connect on port 1434, in other words localhost:1434. I tried machinename:1434 it did not work.&lt;br&gt;I also tried to list the servers using:&lt;/p&gt;&lt;p&gt;sqlcmd -L and I get an empty list.&lt;/p&gt;&lt;p&gt;Any suggestions ?&lt;/p&gt;&lt;p&gt;Thanks&lt;br&gt;Jason&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arezkiStoreFront</dc:creator><pubDate>Wed, 16 Jun 2021 04:28:21 -0000</pubDate></item></channel></rss>