IDX20803 When attempting to verify token
Our production environment started giving us the error below for seemingly no reason halfway through the day. The same code works when running on localhost (using the same tenant, clientId, etc.) Our production environment is running on AWS. Any advice…
Microsoft Security | Microsoft Entra | Microsoft Entra ID
Developer technologies | ASP.NET | ASP.NET Core
Visual Studio Community Version 17.7.4 Http Test 401 Errors
Since upgrading my Visual Studio Community edition to Version 17.7.4, I noticed that the method of sending requests in an http test document has changed in the UI from a green play button to a “Send Request” link. More importantly, since this update all…
Developer technologies | ASP.NET | ASP.NET Core
Developer technologies | Visual Studio | Other
Loading pop up
https://reccloud.com/u/nq75s16 <toolkit:Popup x:Class="FireChat.Views.PopUps.LoadingPopUp" xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" …
Developer technologies | .NET | .NET MAUI
Urgent Assistance for VM - Findings relate to weak SSL/TLS cipher suites and few issues concerning the Content Security Policy (CSP) configuration. Attached is a report. Kindly assist for remediating those vulnerabilities.
Urgent Assistance for VM - Findings relate to weak SSL/TLS cipher suites and few issues concerning the Content Security Policy (CSP) configuration. Attached is a report. Kindly assist for remediating those vulnerabilities.
Developer technologies | Windows Forms
Data Formatting: I'm working on a simple sales data table in Excel. What are the key best practices for structuring my data (e.g., using a table format, a consistent header row, no merged cells) before importing it into Power BI?
These questions focus on the best practices for setting up data in Excel before you even touch Power BI.
Developer technologies | Windows Forms
ASP.NET Core Web API with Google Cloud
Hello Developer's, I'm builded a .NET Core Web API using .NET 8. And I'm interested to use Google Cloud Operation Suite for Logs Monitoring and Logging Purposes. Is there any references which I can follow and suggestions how to integrate .NET Core with…
Developer technologies | ASP.NET | ASP.NET API

Visual Studio Professional 2022 offline installation fails (not starts) version [17.14.9 , 17.14.10 , 17.14.11)
Hi, in my company , on a developer machine, we can as usual download visual studio professional 2022, offline. Currently using latest bootstrapper vs_Professional.exe 17.14.36401.2. After successful download, offline installation failing, see below…
Developer technologies | Visual Studio | Other
Partner Center not allowing me to "accept and continue" when creating individual dev account?
Hi, I am trying to make my microsoft/xbox email into an individual developer account. I am inputting the info into the link via partner center (…
Developer technologies | Windows Forms
how do I make an “http://www. “ call from a browser to a .net 8 core project residing on my web host?
Hi, I have a visual studio .net 8 web application. I copied the projects folder up to my web host, but I don’t know how to call it from a web browser. With .net 4, I just copied my visual studio project folder up to my web host and put it in the web…
Developer technologies | ASP.NET | ASP.NET Core
MAUI CollectionView selected item error
Hello. I starts to learn MAUI Enterprise apps patterns and I found en error (or unexpected behavior) in CollectionView. In my example, I have TrainingsViewModel whitch have ObservableCollection of TrainingViewModel property named as AllTrainings. This…
Developer technologies | .NET | .NET MAUI
Problem with Blazor InputSelect
I've been trying to learn Blazor and I've been working with a movie app tutorial that I got here: https://learn.microsoft.com/en-us/aspnet/core/blazor/tutorials/movie-database-app/?view=aspnetcore-9.0. I've added a lookup table with a "Star…
Developer technologies | ASP.NET | ASP.NET Core
asp.net core web api using smtp with Oauth2 for gmail as well as outlook
Hi, I am using ASP.NET Core Web API 8. I need to create a sample program for sending emails using Gmail SMTP with OAuth2 (web application flow), as well as Outlook (web application flow). Can you provide any sample code, documentation, and screenshots?
Developer technologies | ASP.NET | ASP.NET Core
Installation Error: Windows Installer Service Fails When Installing Visual Studio 2022 on Windows 11 24H2
Hello! I can't install Visual Studio 2022 on my Windows 11 24H2 (build number: 26100.4946) computer - whenever I try to install, I get the "Windows Installer Service is not available. Please restart the system and try again." Did that, didn't…
Developer technologies | Visual Studio | Setup
OpenTelemetry with App Insights Profiler
Hello, We migrated our project to OpenTelemetery from application Insight. Of course, AppInsight is our Exporter now. However, I don't want to lose the "Service Profiler". So I installed ONLY…
Developer technologies | ASP.NET | ASP.NET API

If I upload image to my web App with ASP.NET CORE and Blazor Assembly StandAlone App to the folder Uploads My question is How to show all images to the new page using coding above
@page "/view-page" <h3>Blank View Page</h3> @for (int i = 0; i < tshirtItems.Count; i++) { var index = i; <div class="tshirt-section"> <img src="@tshirtItems[i].ImagePath" alt="T-Shirt…
Developer technologies | ASP.NET | ASP.NET Core
Reusing Printer HDC for Multiple Documents in WinUI2 Application
I'm developing a WinUI2 (WinRT/C++) application, and we plan to include an option to print documents using the available printers. We want to avoid using the system's default Printer Dialog box and are instead creating our own custom solution. Currently,…
Developer technologies | Universal Windows Platform (UWP)
My app breaks if I add LoginViewModel
For some reason my app breaks, when I add the loginViewModel to the mainPage I am using firebase, so I register the user, and navigate to the Main Page builder.Services.AddTransient<RegisterPopUp>(); …
Developer technologies | .NET | .NET MAUI
Visual Studio Bicep Extension Fails to Install with NoApplicableSKUsException
I have: Microsoft Visual Studio Enterprise 2022 (ARM 64-bit) - Current Version 17.14.8 installed and cannot seem to install the Bicep Extension package. I fails with this error log: 8/15/2025 12:16:43 PM - Microsoft VSIX Installer 8/15/2025 12:16:43 PM…
Developer technologies | Visual Studio | Extensions
Image do not bind
This is the VM public partial class AppShellViewModel : BaseViewModel { readonly FirebaseAuthClient _authClient; readonly WeakReferenceMessenger _messenger; readonly IMediaPicker _mediaPicker; [ObservableProperty] LocalUser…
Developer technologies | .NET | .NET MAUI
can I use lamda tothe ICommand in wpf?
I am using mvvm in wpf and I wonder can I use this : public ICommand MyCommand{get;} public MainViewModel() { MyCommand=(o,e)=> { }; } and there will be error and I have to use public MyRelayCommand:ICommand {} ?