Skip to main content
Filter by
Sorted by
Tagged with
2 votes
0 answers
81 views

I'm responsible for maintaining a public ASP.NET Core 8 Web API. One endpoint accepts POST data like this: { "xid": 12345, "message": "Hello, world!" } On the ....
Nat Webb's user avatar
  • 738
1 vote
1 answer
97 views

There is this old thread about how deal with unhandled exceptions (How can I make something that catches all 'unhandled' exceptions in a WinForms application?) Now I integrated this in an ASP....
monty's user avatar
  • 8,973
1 vote
1 answer
122 views

I have an ASP.NET Core 8 project and followed this article: https://learn.microsoft.com/en-us/aspnet/core/grpc/json-transcoding-binding?view=aspnetcore-8.0 import "google/api/annotations.proto&...
arch's user avatar
  • 49
0 votes
2 answers
679 views

I'm trying to launch the "Weather Forecast" template solution but encountering an issue I can't resolve. Here's what I've done: First, I installed Visual Studio 2022 and Angular 17 (npm ...
Yonett's user avatar
  • 33
0 votes
1 answer
179 views

I'm working on an ASP.NET Core 8 Web API project using Entity Framework Core. I've added my connection string to appsettings.json, but when I try to retrieve it using Configuration.GetConnectionString(...
Idowu Olusegun Kelvin's user avatar
3 votes
1 answer
171 views

Grpc.Core.RpcException: Status(StatusCode="Internal", Detail="Error starting gRPC call. HttpRequestException: The SSL connection could not be established, see inner exception. ...
Sanjay's user avatar
  • 2,048
0 votes
0 answers
67 views

I created a SOAP service using ASP.NET Core 8.0 SoapCore 1.2.1.8 The problem: when I get a request and response with an XML structured data, the API adds some root nodes that should be INSIDE the ...
Kaltarus's user avatar
0 votes
1 answer
52 views

I’m working on an ASP.NET Core 8 Razor Pages application where an Edit button on Page A redirects to a function in Page B's backend, which then navigates to Page C. The navigation works as expected. ...
Yuvraj Jadhav's user avatar
2 votes
1 answer
143 views

I have a situation where I am getting a NullReferenceException when I am checking a model (not a property) to see if it is null. Follow these steps to re-create the issue yourself. Create a brand new ...
ThePeter's user avatar
  • 958
0 votes
2 answers
328 views

First time experimenting with creating an ASP.NET Core 8 web application in Visual Studio Code. I chose .NET 8 because it's the newest version. I am deploying it via Azure App Services. I am very ...
CigarDoug's user avatar
  • 1,610
0 votes
1 answer
154 views

I am trying to make a web application in .NET 8. I am following a Microsoft Learn tutorial for adding Entity Framework Core: https://learn.microsoft.com/en-us/aspnet/core/data/ef-mvc/intro?view=...
kevin29's user avatar
  • 103
0 votes
1 answer
148 views

I'm working on a fairly standard ASP.NET Core 8 Web API project. I added a module to globally capture exceptions, and it works fine. But now I'm trying to standardize the responses in the controllers ...
Robe79's user avatar
  • 69
0 votes
1 answer
104 views

I'm pretty new to web dev and have a question about how to best structure the project in currently working on. The project uses Entity Framework and ASP.NET Core 8 MVC. In my database I have the ...
Landon's user avatar
  • 538
1 vote
2 answers
89 views

I have an ASP.NET Core 8.0 MVC (upgraded from .NET 6.0) project; it's working fine in a Docker container except for the pages that contain Blazor code. I'm getting an error blazor.server.js:1 [2025-...
msd's user avatar
  • 91
1 vote
1 answer
72 views

I am developing an API in .NET 8 and implementing authentication using JWT with Microsoft.AspNetCore.Authentication.JwtBearer. The problem is that when I send the token in the Authorization header as ...
user30113669's user avatar
0 votes
1 answer
254 views

When using Blazor's IdentityComponentsEndpointRouteBuilderExtensions.cs logout method: accountGroup.MapPost("/Logout", async ( ClaimsPrincipal user, ...
TexasJetter's user avatar
0 votes
1 answer
47 views

I am trying to access the UserRoles property from my ApplicationUser entity and I keep getting an error message stating Invalid column name 'UserId1'. I am following this Microsoft article (https://...
Andrew's user avatar
  • 2,013
0 votes
2 answers
302 views

I have an ASP.NET Core 8 Web API built with C#, and I'd like to add some validations to the request body for PUT operations. One of it is to ensure that requests coming to my API is matching exactly ...
Mr. Developer's user avatar
0 votes
0 answers
51 views

I've developed an application utilizing Next.js for my client side, and an ASP.NET Core 8 Web API for my backend. The auth flow is fairly simple. My backend issues short-lived access tokens, along ...
david jovanovski's user avatar
0 votes
0 answers
231 views

I have this form and when I try to submit the form, my DB gets a register with null fields, every field that supposed to fill in the form, I sent null, but the fields I've preset the value reaches the ...
Ho Sung Choi's user avatar
0 votes
1 answer
58 views

I'm using NLog so that when server gets error will direct action to ErrorController. Program.cs: app.UseStatusCodePagesWithReExecute("/Error/{0}"); app.UseExceptionHandler("/Error"...
user2174775's user avatar
0 votes
1 answer
72 views

We have an API that was originally written using the ASP.NET MVC framework and hosted on Windows Server. We have now ported it to an ASP.NET Core 8 Web API, and want to host on Linux (Oracle Linux 9). ...
Adam's user avatar
  • 6,812
0 votes
1 answer
102 views

I have a question: I am developing with ASP.NET Core 8.0 and have encountered some issues. In a deployed environment, files like (ProjectName).dll are locked, preventing overwriting. I am curious ...
신성길's user avatar
0 votes
1 answer
345 views

I'll appreciate some assistance debugging my code to know what I am missing or doing wrong. Please feel free to review related code at my git repository at this link https://github.com/slim1477/slim-...
Seyi Agboola's user avatar
0 votes
1 answer
273 views

I have an ASP.NET Core 8 MVC app. It consumes an external API that uses OAuth authorization. In some action method of my controller, I need to obtain some data from the API. So I first make a request ...
patsy2k's user avatar
  • 745

1
2 3 4 5
7