Click here to Skip to main content
15,886,812 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Safe Storage of Secrets in .NET Pin
Richard Deeming25-Jun-19 1:25
mveRichard Deeming25-Jun-19 1:25 
GeneralRe: Safe Storage of Secrets in .NET Pin
Ger Hayden25-Jun-19 6:55
Ger Hayden25-Jun-19 6:55 
AnswerRe: Safe Storage of Secrets in .NET Pin
Afzaal Ahmad Zeeshan25-Jun-19 23:46
professionalAfzaal Ahmad Zeeshan25-Jun-19 23:46 
GeneralRe: Safe Storage of Secrets in .NET Pin
Ger Hayden26-Jun-19 2:17
Ger Hayden26-Jun-19 2:17 
QuestionASP.NET web api tutorial Pin
AstroTheDog24-Jun-19 0:24
AstroTheDog24-Jun-19 0:24 
AnswerRe: ASP.NET web api tutorial Pin
Eddy Vluggen24-Jun-19 1:52
professionalEddy Vluggen24-Jun-19 1:52 
GeneralRe: ASP.NET web api tutorial Pin
AstroTheDog24-Jun-19 3:14
AstroTheDog24-Jun-19 3:14 
GeneralRe: ASP.NET web api tutorial Pin
Eddy Vluggen24-Jun-19 3:26
professionalEddy Vluggen24-Jun-19 3:26 
AnswerRe: ASP.NET web api tutorial Pin
Ger Hayden25-Jun-19 21:33
Ger Hayden25-Jun-19 21:33 
AnswerRe: ASP.NET web api tutorial Pin
Afzaal Ahmad Zeeshan25-Jun-19 23:50
professionalAfzaal Ahmad Zeeshan25-Jun-19 23:50 
QuestionWeb Application and API Pin
Mycroft Holmes12-Jun-19 19:42
professionalMycroft Holmes12-Jun-19 19:42 
AnswerRe: Web Application and API Pin
Richard Deeming12-Jun-19 23:15
mveRichard Deeming12-Jun-19 23:15 
GeneralRe: Web Application and API Pin
Mycroft Holmes13-Jun-19 12:36
professionalMycroft Holmes13-Jun-19 12:36 
QuestionFinalize() vs Dispose() Pin
Anandkumar Prajapati11-Jun-19 18:35
professionalAnandkumar Prajapati11-Jun-19 18:35 
AnswerRe: Finalize() vs Dispose() Pin
Mycroft Holmes11-Jun-19 20:01
professionalMycroft Holmes11-Jun-19 20:01 
AnswerRe: Finalize() vs Dispose() Pin
Shraddha_Patel12-Nov-19 17:23
Shraddha_Patel12-Nov-19 17:23 
QuestionI want to update users table according to ıd value Pin
Member 1064949510-Jun-19 11:38
Member 1064949510-Jun-19 11:38 
SuggestionRe: I want to update users table according to ıd value Pin
Richard Deeming11-Jun-19 1:16
mveRichard Deeming11-Jun-19 1:16 
QuestionHow to use treeView to save the directory tree into the SQL Server database ? Pin
Member 24584679-Jun-19 16:27
Member 24584679-Jun-19 16:27 
AnswerRe: How to use treeView to save the directory tree into the SQL Server database ? Pin
Richard MacCutchan9-Jun-19 21:49
mveRichard MacCutchan9-Jun-19 21:49 
QuestionMysterious ADFS problem Pin
Super Lloyd5-Jun-19 21:19
Super Lloyd5-Jun-19 21:19 
First there is a bit of configuration which I am not sure where is is set.. But is basically as follow:
  1. We got an ADFS server (AD Federation Server)
  2. It forwards authentication to 2 ("slave") servers, the company AD / Auth server and a private AD server for extra custom user
When we start the web site and go on a page marked with the [Authorize] attribute, it props the ADFS login page, which ask us to chose the AD server, then enter credential, and I can successfully login with user of either AS server.

However, when I try to do the same thing to authorize web server to web api call using an hard coded API User (we are not using JwtToken for the current user due to some other issue), getting the token as follows:
C#
var context = new AuthenticationContext(adfsInfo.Authority, false);
var credential = new UserPasswordCredential(adfsInfo.UserName, adfsInfo.Password);
var result = await context.AcquireTokenAsync(adfsInfo.ResourceId, adfsInfo.ClientId, credential);

This
  1. works for user in the company AD server
  2. doesn't work for user in our private additional AD server. I got "invalid user or password"
where Authority is the same AD Url that I use for ADFS Web login, i.e. something like:
<a href="https://auth.dev.mycompany.com/adfs">https://auth.dev.mycompany.com/adfs</a>

What could be wrong? How could I fix it?
A new .NET Serializer
All in one Menu-Ribbon Bar
Taking over the world since 1371!

Questionweb form needs to be used for several languages Pin
dcof2-Jun-19 19:46
dcof2-Jun-19 19:46 
AnswerRe: web form needs to be used for several languages Pin
F-ES Sitecore3-Jun-19 1:00
professionalF-ES Sitecore3-Jun-19 1:00 
Question(SOLVED) Is it possible to raise an error on filename that resides on the server? Pin
samflex29-May-19 4:36
samflex29-May-19 4:36 
AnswerRe: Is it possible to raise an error on filename that resides on the server? Pin
Richard Deeming29-May-19 7:16
mveRichard Deeming29-May-19 7:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.