Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
109 views

I have an ASP.NET application (on .NET 4.5.2) where I want to use combined Windows authentication and JWT token auth. When the app starts, it calls an endpoint like this: /api/auth/token This ...
neca's user avatar
  • 129
1 vote
0 answers
98 views

I currently use Microsoft Graph authentication in my application to get user information from Azure AD (e.g., profile, photo, list of AD users). However, I will soon lose access to Microsoft Graph and ...
Ben's user avatar
  • 201
1 vote
0 answers
62 views

I have an ASP.NET Core web application, hosted on IIS server. Everything is working fine on the parent domain - explorer prompts for Windows authentication and sign in is working fine. But in the ...
Basem Saabneh's user avatar
0 votes
0 answers
32 views

I am trying to create a post method to create a data that pushes to my DB this is my service to call my API: public async Task CreateTest(TestsDto testDto) { try { var request = new ...
Ben's user avatar
  • 201
0 votes
0 answers
73 views

I'm facing an issue with Windows Authentication in a full-stack app: Tech Stack: Frontend: Angular 9.1 Backend: ASP.NET 9 (hosted on IIS) Authentication: Windows Authentication (WinAuth) Hosting: ...
ZZZUnbanned's user avatar
1 vote
0 answers
334 views

I want to use module msnodesqlv8 to do Windows Authentification in my DB. My code is pretty simple and looks like this: const sql = require('mssql/msnodesqlv8'); const config = { server: '...
Alexandra Vasilyeva's user avatar
2 votes
0 answers
76 views

I recently got a Macbook Pro with M4 processor and Sequoia OS. I have been using Windows machine for a while and now trying to figure out my settings. In my PC, I was able to use Windows ODBC ...
H.Hung's user avatar
  • 147
1 vote
0 answers
51 views

I am trying to do something here that I thought would be very simple. I have an old desktop app. It's concept of authentication is simply that it uses WindowsIdentity.GetCurrent(); This is all fine. I ...
Lemonade1947's user avatar
0 votes
0 answers
68 views

I am running Web App on my IIS server and I have Windows Authnetication enabled. On client, when I run PowerShell script: Invoke-WebRequest -Uri {url} -UseDefaultCredentials, its working fine. Also in ...
exeq's user avatar
  • 53
0 votes
2 answers
179 views

I have an ASP.NET Core 6 MVC App with Windows authentication. I use UseStatusCodePagesWithReExecute to handle failure status codes. When I run the application in Visual studio 2022, it directly goes ...
Nina's user avatar
  • 549
0 votes
1 answer
179 views

I am using Windows Authentication in my ASP.NET Web Api app running on IIS server. On client I am using UseDefaultCredentials = true with HttpClient and it's working fine. But when I am using ...
exeq's user avatar
  • 53
0 votes
1 answer
501 views

I have a Blazor Server (using .NET 9 Blazor web app template with render mode set to server). I want to set Windows AD authentication, but it always outputs a null username on the user page, and no ...
qme's user avatar
  • 393
0 votes
0 answers
138 views

I'm trying to get my ASP.NET Core 9 Blazor App to work with Windows authentication running in a docker container. I wrote this dockerfile: FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base # Temporär ...
wenndemann's user avatar
0 votes
0 answers
67 views

Context: I'm building a .NET Framework 4.8 application where users must log in with organizational account (Azure AD). The goal is to enforce authentication without showing other Microsoft accounts ...
Salt's user avatar
  • 980
0 votes
1 answer
349 views

In C# .NET Framework 4.8, I need to generate kerberos token in SPNGEO format so I can send it in Authorization header as Negotiate to my IIS server, where I have Windows Authentication enabled. I am ...
exeq's user avatar
  • 53
1 vote
1 answer
209 views

Since October last year, our site, made in ASP.NET Framework 4.5.2, which is authenticated by Windows, has been having problems when logging in these two browsers and we fear that the error also ...
Frank9412's user avatar
2 votes
0 answers
194 views

I am attempting to have the browser prompt the user for their Windows login credentials on each visit to a page I have setup. The reason for this, is that our customer is wanting the user to have to ...
jortegacdp's user avatar
1 vote
1 answer
59 views

I am using the latest version of ServiceStack (as of the time I am writing, version 8.5) and I need to integrate Windows Authentication into my application. I know that ServiceStack doesn't provide a ...
w4rcT's user avatar
  • 342
0 votes
1 answer
88 views

I have a user logged into domain A and an IIS server in domain B. There is a two-way trust between these domains. Now, the user from domain A enters the web app hosted on IIS in domain B using windows ...
pilifi's user avatar
  • 43
0 votes
1 answer
73 views

I have an app I built that helps me with some tasks such as adding users to groups, removing, creating users, deleting users, and unlocking users in Active Directory. Which all require some admin ...
Maiz's user avatar
  • 29
0 votes
0 answers
143 views

I've been struggling too much on this, I have an Angular application with .NET Core 8 and all I want is to get the Windows user from a client request because I need to log who makes certain action. I ...
user6009865's user avatar
0 votes
0 answers
129 views

I have a table that contains a field enabled for FileStream and it saves the information correctly. Using the code indicated by the Microsoft guide (text), I can retrieve file information on a local ...
SimColombs's user avatar
0 votes
1 answer
156 views

I am using ASP.NET Core 8 (will upgrade to 9 when released). I have 2 websites, the first is accessed internally inside the corporate network, using Windows authentication. The other copy of the same ...
Brian's user avatar
  • 164
0 votes
1 answer
944 views

I have an ASP.NET Core 6 application that uses the Negotiate authentication scheme to authenticate using the Windows authentication (NTLM/Kerberos). I'm configuring the authentication service like ...
Master_T's user avatar
  • 8,181
0 votes
0 answers
57 views

I have 2 Active Directory setups on my lab: AD1.local AD2.local Both forests have trust relationship enabled. I have a resource "X" on AD1 that is only accessible to the "Marketing&...
Arif  RiseAgainstHate's user avatar
0 votes
1 answer
122 views

I'm facing an issue with Windows Authentication when deploying my Single Sign-On (SSO) application using Duende SSO on IIS. The application is secured using an SSL certificate with the following ...
Mselmi Ali's user avatar
  • 1,315
3 votes
1 answer
518 views

I'm having a hard time trying to use negotiate for my app. The thing is that for https://localhost, the Windows authentication works fine, but once I switch to make a request from https://test.com, I ...
Juan AS's user avatar
  • 31
0 votes
0 answers
60 views

So I have a dotnet web app deployed with IIS on a Windows server 2019, this web app uses Windows authentication and the problem that I have is that when I try to connect like to the webapp directly ...
Zine eddine Bahloul's user avatar
2 votes
0 answers
87 views

we want to connect to SQL server data base using windows authentication. we are able to connect with SQL server authentication, but the password is getting changed very frequently and our application ...
lemon chow's user avatar
0 votes
1 answer
115 views

I have a blazor server application with windows authentication. Server configuration: builder.Services.AddAuthentication(HttpSysDefaults.AuthenticationScheme); builder.WebHost.UseHttpSys(options =>...
Justyna's user avatar
  • 101
1 vote
2 answers
375 views

I am building a .NET Core 8 app that sends an HTTP request to a REST API using Flurl. When I manually set the proxy with my credentials, it works fine. However, when I don't set my credentials, the ...
Théo Uzan's user avatar
0 votes
1 answer
28 views

I can't get a component to be disabled using policy Create an empty BlazorServer project with the WindowsAuthenticate authorization template. Add a default policy that denies everything. builder....
Евгений Кудик's user avatar
0 votes
1 answer
248 views

Description: I'm currently setting up an Ansible playbook to connect to an MSSQL database server hosted on Windows using integrated Windows authentication. However, I'm uncertain about the requirement ...
Lucifer007's user avatar
0 votes
1 answer
123 views

We are running into a weird problem with two users on an internal only app at a client. The application uses windows authentication. It only happens with these two users and have had no other ...
Wallace B. McClure's user avatar
0 votes
0 answers
76 views

I'm trying to connect to Azure SQL using on-prem AD account, which is synched to Azure AD. I am able to connect using the SSMS when I run as a different user but programmatically it doesn't work. It's ...
Ishan's user avatar
  • 4,028
1 vote
0 answers
107 views

I have websockets enabled on my iis server. I am using singal R to update a progress bar during downloading. Works and local host but when published to server I get the following. blazor.web.js:1 [...
Quinn Nash's user avatar
0 votes
0 answers
309 views

Situation: I have two SQL Servers with two databases located in the same domain as my client's PC. I'm trying to create two pivot tables using the table relationships in these databases on both ...
bookofproofs's user avatar
0 votes
1 answer
384 views

I have an ASP.NET Core Web API. When I run it in Visual Studio with IIS express, Windows authentication works fine. However, when I deploy the API to IIS, it fails to use Windows authentication. I ...
Azad's user avatar
  • 39
0 votes
0 answers
330 views

EDIT: as @Panagiotis Kanavos wrote - this probably a question about the use of group managed service accounts. This is where I will try to find the reason for the error. --- original entry --- I'm ...
xpldngerror's user avatar
0 votes
2 answers
606 views

I have an intranet ASP.NET Core web app deployed in IIS that uses Windows authentication. This app has been converted from an ASP.NET MVC 5 & webforms app. The ASP.NET Core app uses an ...
boggy's user avatar
  • 4,077
0 votes
1 answer
74 views

I modified this sample app (https://github.com/dotnet/AspNetCore.Docs/tree/main/aspnetcore/fundamentals/servers/httpsys/samples/8.x/SampleApp) such that: line 14 in Program.cs now reads: (before): ...
Okta's user avatar
  • 72
1 vote
1 answer
175 views

I am developing an internal webservice using ASP.Net Core 6. The windows identity is provided to the app by IIS when accessing AuthenticationStateProvider.GetAuthenticationStateAsync().User. Most ...
Wolfware's user avatar
  • 161
1 vote
1 answer
64 views

I have a blazor server side app with windows authentication. How can I programmatically prevent the browser, caching the logged in user's credentials? I need this therefore because I want to force the ...
Mdarende's user avatar
  • 801
0 votes
0 answers
84 views

In my Blazor server side app I have set windows configuration. If a user opens my page the first time, the login dialog box appears and the user has to log in. But the next time, I think it is cached ...
Mdarende's user avatar
  • 801
0 votes
2 answers
1k views

I'm building a Blazor server application for an internal company use and using Windows authentication. The app is supposed to field updates from another app via an exposed controller. I am trying to ...
Dennis's user avatar
  • 235
0 votes
0 answers
95 views

When running an ASP.NET project that uses Windows Authentication in VS using IIS Express on a computer joined to domain C.B.A, the authentication works and local groups of C.B.A that the user is part ...
Xander Stoffels's user avatar
0 votes
1 answer
2k views

I'm receiving the subject message when I test an TFDConnection to my SQL Server in Delphi. The server is in a different AD tree. I've set up a Windows credential that seems to work, as I can connect ...
beantreeze's user avatar
1 vote
0 answers
265 views

I am trying to create a simple web service starting with the Visual Studio "ASP .NET Core Web API project template". The project wizard creates a weatherforecast service that works fine. ...
PrfctByDsgn's user avatar
  • 1,062
0 votes
1 answer
626 views

I'm trying to get our Playwright tests to run in our CI/CD pipeline. I'm finding scant documentation on how to do so with regards to our specific situation. Here are the key components: Code is .NET ...
Michael Kolakowski's user avatar
0 votes
0 answers
427 views

I have an ASP.NET (Blazor Server) app (.NET 8) which calls an API. We are using Windows Authentication on both the website and API. This works in multiple (6) different environments. We have a client ...
Jeff's user avatar
  • 992

1
2 3 4 5
62