My requirement is the claims assigned to a user are company aware so say for example User 1: is publisher for Product Manager for Company 1 but the same user is only editor for Company B. Can this be achieved through Geneva Server, or additional code needs to be written to override classes.
Geneva Server STS
279 Views Asked by chugh97 At
1
There are 1 best solutions below
Related Questions in WCF
- couldn't copy pdb file to another directory while consuming wcf web service
- Call wcf from android app
- WCF Service not accepting multiple body parameters
- Error in Calling some service in WCF Client
- WCF channel Factory caching
- How to convert a List<string> to an IEnumerable<ServiceReference.datatable> C# Silverlight WCF RIA Services LINQ to SQL
- WCF reusing types with inheritance - cannot generate client code
- System.ServiceModel.FaultException'1' Where might the error be?
- How to configure proxy address for multiple WCF-bindings at once?
- How pass XML from PHP to the Soap WCF service?
- Multiple service contract inter-commnication
- WCF Service not returning virtual property ServiceProvider
- How to get information about error from HttpContext in WCF services
- Using Service Bus to access On Premise WCF Service
- Test case for WCF REST Service
Related Questions in GENEVA-FRAMEWORK
- Relying Party in a web farm scenario (IsSessionMode = true)
- Using SQL Account Store in Geneva
- Windows Identiy foundation redistributable failed on Vista Home Premium edition
- Windows Identity Foundation - Third Party Secure Token Server
- Handling credentials in an app consuming a WCF service with WIF/Geneva
- Custom Claims with Geneva framework and how to "synch" users whitin your app
- Azure/web-farm ready SecurityTokenCache
- Is Azure Access Control and WIF suitable when some of the relying parties might not be .Net based
- ADFS v2.0 Error : MSIS7042: The same client browser session has made '6' requests in the last '1' seconds
- Moving from ADFS to the Geneva Framework
- Talking to a Microsoft Geneva server from Java
- Simple Claims Transformation for an RP-STS in Geneva Framework
- asp.net mvc security
- Which Property should I use when Sending Additional information in a RequestSecurityToken (RST)
- RequestSecurityToken from STS and post it to my website
Related Questions in CLAIMS-BASED-IDENTITY
- Configuring MVC app using Auth0 for ClaimsIdentity and nameidentifier error msgs
- Share Authentication between MVC applications through WIF
- User is authorised when using IE but not Chrome/Firefox
- Retrieve information from Bearer Token
- Single sign-on flow using ASP.NET MVC + Active Directory
- Authorization Model: Context of Role?
- ASP .Net MVC and WCF Identity (Claims) Integration
- Should I store user data as claims or in a user profile table?
- ADFS – tokens and claims?
- Asp.net Identity SSO in multiple projects on localhost
- Best Practices for Roles vs. Claims in ASP.NET Identity
- MVC 5 OWIN login with claims and AntiforgeryToken. Do I miss a ClaimsIdentity provider?
- JWT ValidateToken overriding in C#
- Retrieve Userid from a claims in a cookie in Core MVC
- Get Friendly Name of claims from Identity
Related Questions in GENEVA-SERVER
- Using SQL Account Store in Geneva
- ADFS v2.0 Error : MSIS7042: The same client browser session has made '6' requests in the last '1' seconds
- Setting up Geneva server for Windows Integrated security scenario
- MetricsExtension.Native.Exe is not running when deploy Geneva monitoring agent on service fabric
- getting Windows Identity Foundation "Developer Training Kit" examples to work
- Geneva Server STS
- Geneva Server And SQL Store
Related Questions in CLAIMS
- Retrieve information from Bearer Token
- Group claims in roles ASP.Net Identity
- Excel report Generation in Guidewire claimcenter
- WSO2 Identity Server 5.0.0 fails to return user claims in SAMLResponse for user from secondary user store
- Shortest path tree claim (Graph)
- ADFS 2.0 claim rules for consuming SAML CA Site minder assertion
- ADAL JavaScript: Adding additional claims (ADAL JS)
- AUTH_USER, Claims, and Classic ASP
- Local STS to production
- Convert role in application to groupsid
- Why RP and IP communicates through browser instead of going directly?
- ADFS roles from SQL Server
- WIF with out using STS
- MVC5 AntiForgeryToken Claims/"Sequence contains more than one element"
- SAML IDP and WS-Federation SP with ADFS 2.0
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?
In my opinion it's the relying party itself should be making decisions on what roles to attach to a token based upon the identity itself.
However you can set rules based on individual relying parties and choose to serve information as a claim based on whatever the backing store says. Now how you represent that information in whatever backing store you are using (AD, LDAP, SQL, whatever) is a design decision at your end. You may also want to look at harnessing the claims transformation language in beta 2.
It's really hard to give any specific advice without knowing details about where your claim backing store is going to be and why you think you need to go this route.