You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 8, 2019. It is now read-only.
I must be missing something fundamental.
I've spent a lot of time looking at examples and I still don't understand it.
What is WindowsAuthenticationOptions.IdpReplyUrl?
What kind of resource it should be pointing to?
In your examples it is pointing to "https://localhost:44333/core/was" but I don't see how this endpoint is configured.
The text was updated successfully, but these errors were encountered:
Thanks for answering :)
I'm trying to use WindowsAuthentication server from IdentityServer3.
I'm using UseWsFederationAuthentication() on the IdentityServer3 side.
There is WsFederationAuthenticationOptions.CallbackPath propety, as I understand it should match WindowsAuthenticationOptions.IdpReplyUrl, correct?
my confusion:
What is listening at this URL?
Is this URL handled by WsFederationMiddleware?
Do I have to handle it somehow?
I did a bit of debugging and figured out the solution
Hope this will help
In WsFederationAuthenticationOptions I had to comment out CallbackPath initialization.
This fixed the problem for me.
It seems that "was" ending does not matter and there is nothing listening to this specific ending.
WsFed middleware is just listening on all requests.
From FORM post content it is figuring out if this request should be processed.
If CallbackPath is assigned then logic is more complicated and it did not work to me.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I must be missing something fundamental.
I've spent a lot of time looking at examples and I still don't understand it.
What is WindowsAuthenticationOptions.IdpReplyUrl?
What kind of resource it should be pointing to?
In your examples it is pointing to "https://localhost:44333/core/was" but I don't see how this endpoint is configured.
The text was updated successfully, but these errors were encountered: