4,636 questions
-1
votes
1
answer
35
views
Automatic login with Windows user over JS/AngularJS front and C#/OWIN backend
I have a JavaScript/AngularJS fronted with C#/OWIN backend server.
Currently, users go to the login page and send their username/password via POST request and backend server returns a set of ...
0
votes
0
answers
24
views
c# microsoft.owin External Login
a few years ago i've implemented on my web site the external login from google, facebook and linkedin using the microsoft.owin library.
It's almost 3 months that facebook and linkedin have been having ...
0
votes
1
answer
48
views
ASP.NET MVC : Owin external login returns redirect inside the login popup
I have an external login that I am utilizing Microsoft.Owin to authenticate the user.
It is working correctly, where the user can sign in and register using their Google Login.
My problem is, the ...
0
votes
0
answers
44
views
OWIN Authentication Cookie Not Created After Expiration
I have two applications:
X
Y
I am using OWIN cookie authentication for X and handling user sign-in through Y.
Flow:
After signing in successfully on Y, it redirects back to X with an OAuthToken.
On ...
0
votes
0
answers
16
views
Conditionally force login with SAML connections using Owin
We have a active SAML authenticated session in this ongoing session we want to re authenticate the user by forcing the user to enter credentials to re-authenticate and we also do not want to hamper ...
1
vote
0
answers
24
views
ASP.NET MVC Entra login Request.IsAuthenticated return false even after a successful login
I am using Microsoft owin cookie based authentication for ASP.NET form based authentication and it will return IsAuthenticated=true. But when I use owin authentication for get authenticated from Entra....
0
votes
0
answers
82
views
Sustainsys.Saml2.Owin: how to invoke UseSaml2Authentication with multiple sets of different Saml2AuthenticationOptions
I am new to Saml2 so please forgive me if I don't get the terminology quite right. I have been tasked with implementing SSO in our application. I have a situation similar to this question. In our ...
0
votes
0
answers
49
views
OpenId Connection Problems - OpenIdConnectAuthenticationHandler: message.State is null or empty
I'm building my first app with Blazor, and it's actually my first project authenticating with RapidIdentity as well. I have my URIs and ClientId / Secrets already setup as well.
Anyway, I'm having ...
0
votes
0
answers
56
views
AsyncLocal for context sharing
I have a .NET standard library that is being consumed by a .NET v4.7.2 application. I have a custom middleware in the application which extracts OWIN context and sets it to a AsyncLocal<...
0
votes
1
answer
52
views
OnRedirectToIdentityProvider does not fire when publish my ASP.NET webforms app on IIS
I have an ASP.NET webforms and a Web API that locally in IIS Express, automatically calls my custom identity server when user navigates to a specific web page, firing the OnRedirectToIdentityProvider ...
0
votes
0
answers
71
views
Is it possible to make .NET 4.8.1 support HTTP/2 using OWIN?
I want to enable HTTP/2 protocol with OWIN in ASP.NET webforms project. I have created a simple webforms project and added OWIN Startup class to this project like this:
[assembly: OwinStartup(typeof(...
-4
votes
1
answer
68
views
Could not load file or assembly Microsoft.Owin Version=3.0.1.0
execution of my web applications fails with following runtime error:
Could not load file or assembly 'Microsoft.Owin, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its ...
0
votes
1
answer
56
views
Common authentication(Azure AD) for multiple ASP.NET MVC web projects
I have a Visual Studio solution with multiple ASP.NET MVC web projects (.NET 4.8) deployed in IIS. In the "home" project, which is the startup project added Azure AD authentication, it works ...
1
vote
0
answers
33
views
Owin authentication to two different areas
I have searched for this, but everything seems to refer to different levels of authorisation. We have an ASP.NET MVC app with top level controllers and views (open to all who surf), followed by two ...
0
votes
0
answers
28
views
A user in ASP.NET MVC web application logged in as different user
I am developing a web application using ASP.NET MVC Framework 4.7.2 and IIS Express to run the application on my local machine. The web server that i am using is IIS 10. I am authenticating the user ...