Sustainsys / Saml2

Saml2 Authentication services for ASP.NET
Other
951 stars 601 forks source link

No Controller Added in MVC Project #1357

Closed shnal closed 2 years ago

shnal commented 2 years ago

Created a new .NET 4.72 web application.

Added package Sustainsys.Saml2.Mvc

Checked under /Controllers

No new controller added.

Is this intended behaviour?

image

shnal commented 2 years ago

Sustainsys.Saml2.Mvc version 2.9.0

shnal commented 2 years ago

image

AndersAbel commented 2 years ago

The controller is in the binary package, it does not show up in your source. Try accessing /Saml2 when the package is installed and it should give you the Metadata (if configuration is correct)

shnal commented 2 years ago

Thanks @AndersAbel

In this case, how should I go about adding custom actions during the signon process?

AndersAbel commented 2 years ago

@shnal for better control, use the Owin package instead.

shnal commented 2 years ago

Thanks @AndersAbel