I am working in asp. net core 6.0 web API project (clean architecture (CQRS)). I am using fluent validation for validate command and queries. public class Creat
I'm trying to make a HttpGet request in my ASP.NET Core Web API. The problem is that I don't know how to make get request with query. This is my model: public c
I have tested some pages which contains parameters "?" in PSI. As a result page speed insights is taking field data from a different url if the original one con
Below is my Startup.cs public class Startup { public Startup(IConfiguration configuration) { Configuration = configuration;
I am working on an ASP.NET Core Web API application in which I am working with the files security. I want to monitor the maximum and minimum RAM and CPU consump
I am working on dotnet core 3.1. I am working on API call. When I call the API, below function in Repository will execute first by saving the data: then anothe
Working on .Net Core MVC and IText7, I'm filling a Pdf form (empty form PDF is already saved on server). What I want is, Whenever I send request to the link (ca
When I use Postman to test my API with a PUT request, I get this error: "type": "https://tools.ietf.org/html/rfc7231#section-6.5.1", "title": "One or more valid
I've one ASP.NET web app running over .NET Core 3.1 into one AWS Lambda; On Startup.cs I had this configuration: services.AddControllers().AddJsonOptions(opt =&
I'm trying to connect to a Web Service with two-way ssl auth, I've installed the certificates to consume, in the browser in the browser asks me for the certific
I have an API project related to Outlook calendar integration. With this project, you can access your outlook account. I want to list all the events in the cale
Not sure why this is happening. In the SaveRole() method when I try to hover over and see the value when debugging this line always shows null on the apiRespons
I have an ASP.NET Core Web API hosted in Azure. When I'm trying to make a fetch request from my web app hosted on Vercell, I'm getting this error: Access to fe
I'm implementing login using Microsoft provider also implement the default login using jwt when I run the project I got this error (Scheme already exists: Beare
ASP.Net Core Web API Call Thirds party API fails intermittently. The following exception raises intermittently when load test with postman. "Call failed with st
I am trying to use the session capability in ASP.NET Core Web API (.NET Core 3.1). As a test, I configured my project as follows. Install NuGet package Microsof
I'm creating a web API that accepts a custom object. This works when someone does a POST request in JSON format. But now I have someone asking if they can post
I have an API that is connected to a database and where I retrieve data. One schema example: The idea is to retrieve all related data based on the Application
I have a web api to access "resources". These are not user specific resources. There is a "reader" app role. User1 is added to "reader" role App1 has been grant
When I am passing a single object like below then it is working as per below image [HttpPost] public async Task<ActionResult> Post([FromForm] MyModel Deta