Tagged Questions

2
votes
2answers
194 views

How to mix WIF and non-WIF endpoints in a single WCF <service>?

A WIF-based WCF service needs to call method FederatedServiceCredentials.ConfigureServiceHost(), or put the equivalent element <federatedServiceHostConfiguration> in the web.config file, to ...
2
votes
1answer
809 views

How do I specify claim type requirements on the service side so they will be obeyed by the client request?

I have: A passive STS "login application" that is also an identity provider. An active STS WCF service that can accept and handle ActAs tokens A web site relying party A WCF service relying party ...
1
vote
0answers
52 views

C#, WIF, WCF -> Generation of the proxy when adding a second reference

I've implemented a c# solution that contain a custom STS, a WCF services and a simple console application to interact with bot servers. STS make an authentication based on username and password. ...
1
vote
1answer
329 views

Accessing a Claim Aware WCF from Silverlight

I am working on a Silverlight 4 application which connects to a claim ware WCF Service. I am using the following code to retrive the claim token in my WCF to perform authorization. IClaimsPrincipal ...
1
vote
1answer
101 views

Accessing claims via the security principal attached to the request thread, versus AuthorizationContext

I'm working with the Azure ACS Labs where they are using FederatedServiceCredentials to authenticate users for Active Federation. Now I want to access the claims of the user from within the WCF ...
1
vote
1answer
80 views

How can I implement WCF/OData access as a “paid upgrade” to my ASP.NET site if I want to use AJAX with the same?

Suppose I'm entertaining a business model that offers free access to my propritary data if they visit my website. These users will have advertising subsidize the cost. Then, for the paid users I ...
1
vote
2answers
289 views

MVVM on top of claims aware web services

I'm looking for some input for a challenge that I'm currently facing. I have built a custom WIF STS which I use to identify users who want to call some WCF services that my system offers. The WCF ...
0
votes
1answer
63 views

Using WCF STS Bootstrap token in SharePoint 2010 (thinktecture identity server as sts and ActAs)

Has anybody used bootstrap tokens inside SharePoint 2010 when using a custom STS. I've been struggling with this for a few hours now. Whenever I issue the RST I get the following error message: ...
0
votes
0answers
104 views

WIF-Authenticate claim-based Share Point site by token passed from a winform client

I followed this link and did it http://msdn.microsoft.com/en-us/library/gg251994.aspx But our scenario is litter different: We have a WinForm client, Wcf services(hosted as windows service), Sts ...
0
votes
1answer
286 views

Calling Net Tcp WCF Service from Claims based SharePoint

I have a windows service that runs a WCF Net Tcp binding service. All binding and endpoint information is set programmatically. _host.AddServiceEndpoint(typeof(IService), new NetTcpBinding(), ...
0
votes
0answers
377 views

WIF and WCF - Accessing Thread.CurrentPrincipal inside service method with AspNetCompatibilityMode turned off

I have a web application with a silverlight app on one of the pages. The website is secured using WIF. I am attempting to make a WCF call from silverlight to a service hosted in the same appdomain as ...
0
votes
1answer
709 views

Invoking a WCF service using claims based authentication

I have a WCF service deployed in a server machine. We are using claims based authentication to authenticate the WCF service caller. The WCF service is restricted by using IIS Authorization rules. How ...
0
votes
1answer
168 views

Geneva Server STS

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 ...
0
votes
2answers
724 views

Using 'System.Identity.Model.Claims' for Authorization and Authentication

I want to add authentication and authorization to my application. I do not want to use Active Directory for this. Should I use System.IdentityModel.Claims to do this? Will using ...