0

I want to use an ASP.NET Core Web API Service that should run in Azure Service Fabric. Is it possible to use Windows Authentication to secure the web Service? I want to prevent that the user who uses this needs to log into the System manually.

Alexander
  • 1,021
  • 6
  • 20
  • 38

1 Answers1

1

Only when using WebListener. Kestrel doesn't support it, because it is a cross platform implementation.

Here's an example.

Community
  • 1
  • 1
LoekD
  • 11,402
  • 17
  • 27