I have installed and running ADFS. User can sign in there from the WIF web app (needs to enter domain login/password at ADFS login page or enter in browser windows login popup if i use Integrated auth mode at ADFS config). Is it possible to configure ADFS/WIF the way that user enters login credentials in client application? i.e. without redirection to ADFS login page? If yes, please redirect me to a sample. Thanks!
Is it possible to sign in to ADFS federation with WIF client passing user name and password from client?
1.1k Views Asked by G.B. At
1
There are 1 best solutions below
Related Questions in .NET
- Does compiler optimize operation on const variable and literal const number?
- What is the point of definnig Asp.net Intrinsic Objects In different places and what is the different betwen them?
- Deleting Orphans with Fluent NHibernate
- IOrderedEnumerable to vb.net IOrderedEnumerable Conversion
- What is this namespace ITypeOfObjectsBoundToListBox ? Couldn't find it
- .net rest service with JSON string and consumed with java client
- What is best way to check if any of the property of object is null or empty?
- Telerik's WPF RadColorPicker NoColorText property not working
- Possible consequences of duplicate ProgId for different classes
- How are multiple requests to Task.Run handled from a resource management standpoint?
- Optimizing C++ call from C#
- Make a per-web-application object available to Web API and SignalR controllers
- System.ComponentModel.DataAnnotations.Schema namespace conflict
- LINQ Except/Distinct based on few columns only, to not add duplicates
- Not displaying content by its URL string - absolute urls
Related Questions in SINGLE-SIGN-ON
- App will throw exception at when I first login when device SSO is enabled
- LDAP user attributes from CAS
- Single Sign On service hangs when configuring it
- Single Sign out in All application using Auth0
- How to logout from Bluemix Single Sign On service?
- How to add users to Cloud Directory via API?
- WSO2 IS - Do a Single Logout using the IdentitySAMLSSOService
- Skip login on MVC 3 application (SSO)
- Service broker error when adding Single Sign On service
- SAML service provider signature verification
- SAML v2 forms auth
- Combining custom application authentication with JAVA EE security. Possible?
- Bluemix Single Sign On service: Node.js code for getting the currently logged in userid?
- Apache - Configuring mod_auth_sspi.so
- Single Sign-On in Windows Applications using AD login
Related Questions in WIF
- Share Authentication between MVC applications through WIF
- In WCF/WIF how to merge up claims from two different client's custom sts's tokens
- Configuration WCF Client for WIF .NET 4.5
- The token resolver is unable to resolve the security key reference
- Wifi repeater and captive portal
- N-Tier Application Authentication (RabbitMQ as Broker and C# as Business Tier) - WIF possible?
- Get Friendly Name of claims from Identity
- DJI Phantom 3 standard Connectivity issue
- How to store user data on the server instead of cookies using Windows Identity Foundation
- Is it possible to sign in to ADFS federation with WIF client passing user name and password from client?
- .NET MVC5 w/ ADFS and Windows Authentication
- ADFS exception "AddressFilter mismatch at the EndpointDispatcher"
- How to secure my multi tenant webapp that is running on Azure
- Losing WIF Claim with load balanced server
- Windows Identity Foundation on Windows 10 Tech Preview
Related Questions in ADFS
- Can you use the same token in ADFS for 2 different relying parties?
- ADFS Relying Party trust which has a querystring parameter
- Disable SAML token authentication response digital signing
- OpenAM or OpenSSO fedlets as SP and ADFS as IdP without full implementation of OpenAM or OpenSSO?
- “Authorization has been denied for this request” for few Users using Azure Active Directory
- Active Federation for ADFS Proxy 2.0
- WS-Federation sign-in Asp.NET 5 MVC 6 ADFS
- Requested Authentication Method is not supported on the STS
- How to form SP initiated URL for openam/saml2 with ADFS?
- Can I install ADFS Service and ADFS Web Proxy on same server
- ADFS 2.0 url in trusted site on extranet or internet?
- Mapping ye olde Azman operations and roles to ADFS Claims
- How do I limit the claim providers listed on the Home Realm Discovery page in ADFS?
- Visual Studio 2015 Azure ADFS
- ADFS 3.0 not redirecting on signout
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
That's possible - you basically need to request a token programmatically from the WS-Trust endpoint at ADFS - this is a pretty old blog post of mine - pre .NET 4.5 - it shows how it works in principal. Some details might have changed though:
http://leastprivilege.com/2010/04/14/using-an-active-endpoint-to-sign-into-a-web-application/
The WSTrust bindings have been removed from .NET - but you can find them in this nuget package now:
https://www.nuget.org/packages/Thinktecture.IdentityModel.WCF/
The package also includes a WSTrustClient class which can simplify the code from the blog post. Give it a go.