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

I am working on a legacy Web Forms project written in VB.net. When an authorized client makes a bad request, my application response returns a full stack trace that I want to hide. I have a redirect ...
blitzchap's user avatar
0 votes
1 answer
108 views

I have a third-party React page which makes some API calls to .NET backend. I need a way to restrict people from hacking API by changing values of the request. When someone opens the third-party page ...
Shivanka's user avatar
  • 743
3 votes
0 answers
79 views

I have a WEB API in dotnet that returns a File for example var fileResult = File(wavAudioBytes, "audio/mpeg"); then return it [HttpGet] public IActionResult Get() { var ...
Yousaf Wazir's user avatar
2 votes
1 answer
206 views

I am creating an ASP.NET Web API gateway which needs to communicate to legacy COM component business logic written in C++. So I am creating another Web API which internally gets data from COM ...
srajeshnkl's user avatar
0 votes
0 answers
66 views

I have a legacy API on .NET Framework 4.6.1. I've been asked to take a look at one of the POST endpoints and so as an initial step I tried running it against my test database in localhost. I get a ...
Red Gordon's user avatar
1 vote
0 answers
66 views

I have developed a Web API application in C#. Now other teams in my company have developed their own applications, mainly in Node, that make requests to endpoints in my API. However, they do stupid ...
Andrew Toole's user avatar
1 vote
1 answer
113 views

I need to build a service capable of receiving SOAP messages and re-route those to a REST microservice. The message sender cannot be modified but my service can (and it must I guess): I decided to ...
hello-there's user avatar
0 votes
1 answer
82 views

I had to extend IdentityUser model (and AspNetUser table of course) with some extra field (RegistrationDate) so I created ExtendIdentityUser model class. It works nice. Then, I needed to change some ...
1_bug's user avatar
  • 5,786
0 votes
0 answers
56 views

I set up Elastic Search about a month ago for my pet-project. Elastic Search is hosted locally on my machine on Windows. Everything was working fine. Now when I try to access it in any way it doesn't ...
SilverMoon17's user avatar
0 votes
1 answer
116 views

I am new to Odata as well as EntityFramework, And I am trying to use OData with DTOs. My Entity Model have been defined something like public Orders { public String OrderId{get; set;} public ...
user26384848's user avatar
0 votes
0 answers
113 views

I am building an ASP.NET Core API that uses Azure Entra ID (formerly Azure AD) for authentication. I need to process the TokenValidated event in JwtBearerEvents to handle group overage scenarios. For ...
Samofan99's user avatar
0 votes
1 answer
201 views

I wish to add a custom header parameter in Swagger for all my endpoints in my ASP.NET Web API application running ASP.NET 4.8 using NSwag. I have found many, many references explaining how to do this ...
Dale K's user avatar
  • 28.1k
0 votes
0 answers
26 views

I’m starting a new project in Visual Studio 2022 using Angular and Web API, where Visual Studio creates two separate projects by default. However, the default template runs each project separately, ...
Max Bündchen's user avatar
0 votes
1 answer
179 views

I am using Blazor Webassembly standalone + Asp.Net Web Api(.Net8.0). I want to implement Google Authentiaction. I successfully got the authorization code but having a problemgetting the access token ...
Kazuki's user avatar
  • 1
-1 votes
2 answers
154 views

I'm using PostgreSQL with a .NET project, and I'm facing an issue executing a stored procedure through Dapper when using dynamic parameters to pass a DATE parameter. The stored procedure is defined as ...
Hemanth Kumar Chilamkurthi's user avatar
0 votes
0 answers
26 views

I'm using a solution involving similar code to that which is explained here: How do I set return_uri for GoogleWebAuthorizationBroker.AuthorizeAsync? What I've discovered after getting the code to ...
Dan Colgan's user avatar
0 votes
0 answers
54 views

Connection controller: using System.Web.Http; using eQCsomWebsite.Models; using eQCsomWebsite.Services; using eQCsomWebsite.Services.implementer; using System.Web.Services; namespace eQCsomWebsite....
Ritik Kumar's user avatar
0 votes
1 answer
76 views

We have developed an API endpoint and it is not working on the production site, this endpoint works perfectly on local host or even using tools like NGROK with GET and POST request. We have already ...
Emanuel Gil restrepo's user avatar
0 votes
1 answer
83 views

We are currently building multiple applications, including some mobile-enabled ones, and are restructuring our project into a Hydra-like architecture with multiple interconnected applications centered ...
Kafkaa's user avatar
  • 81
0 votes
0 answers
85 views

I have a situation that requires me to run an external console .NET framework app which in turn starts a Windows Forms application that embeds WebView2. This external exe needs to be called from a ...
Mousa Shawar's user avatar
0 votes
1 answer
203 views

I'm implementing authentication in my app using ASP.NET Web API and JWTs. I’m trying to understand the purpose of refresh tokens and have some doubts about their benefits and security implications: ...
Nikusha Gabidzashvili's user avatar
0 votes
1 answer
70 views

I'm building a web application with an ASP.NET Web API backend and a Vue.js frontend. I've implemented JWT authentication and am storing the access token in an HTTPOnly cookie for security reasons. ...
Nikusha Gabidzashvili's user avatar
0 votes
1 answer
127 views

I've tried over and over to get passkey auth to show the rp name instead of the rp id. Initially I had my backend url (rp id) set to a subdomain (api.project.ca) and my frontend was projectname....
Jack Schaible's user avatar
2 votes
2 answers
148 views

I have a REST API with the usual sort of structure /customers // get a list of all customers /customers/22 // get customer with the ID 22 /customers/22/orders // get ...
PaulH567's user avatar
  • 199
0 votes
1 answer
431 views

I am working on API project using Workday APIs. Based on the data given by Workday, I could test API calls from Soap UI and get responses back. Here under this Workday Revenue Management Module, we ...
Rita's user avatar
  • 11