I'm trying to create an OData service that will use authentication & authorization provided by ACS.

I was able to configure ACS but now I need to provide ability to users of the service to generate their SWT token to add it into "Authorization" header. I though to create a web page that will provide list of available IdPs and will display SWT token after successful authentication.

How to do it?

link|improve this question

80% accept rate
It sounds like you want to host a website that will act like an RP, redirecting the user to ACS and then to the identity provider and back, and then simply display the SWT received from ACS. If so that SCB's links should give you the code you need to do this, but I'd be interested to know more about your scenario. What is the nature of your OData client? Do you have a website making OData calls on the user's behalf for example? – Andrew Lavers Feb 8 at 22:17
My ultimate goal is to create JavaScript application that consumes existing OData (.NET) service. I would like to protect the OData service using ACS. Currently I'm struggling to retrieve SWT token that should be inserted into authorization header by the Javascript application while calling my service. – Glaxalg Feb 9 at 20:02
feedback

2 Answers

up vote 1 down vote accepted

SCB's links are an excellent start here. It sounds like in addition to your OData service, you want to host a website that's capable of fetching and caching the SWT token issued by ACS so that it can be uses to make authenticated calls to your OData service on the user's behalf.

You can do this with a WIF based site like in the ACS sample but you need to provide your own custom security token handler so that it understands SWT tokens, which aren't natively supported by WIF.

Check out the april 2011 identity training kit which offers cues on how to do this. You can find SimpleWebToken and SimpleWebTokenHandler classes that build on the WIF library in the Windows Phone 7 sample for example. Check out step 38 of that walkthrough where it shows how to add the SimpleWebTokenHandler to your site's the web.config.

With all that working, you'll also want to configure saveBootstrapTokens="true" in the microsoft.identityModel/service section of your web.config as well. That way, your website can grab the SWT token like so:

SimpleWebToken swt = ((IClaimsIdentity)HttpContext.Current.User.Identity).BootstrapToken as SimpleWebToken
link|improve this answer
feedback

If I understand your question correctly you are trying to show a page that lists the available providers.

Microsoft have a very good example of how to hook up ACS which includes showing the auto generated list of providers.

http://www.windowsazure.com/en-us/develop/net/how-to-guides/access-control/

In regards to hooking OData to the ACS the Data Access team also have a very good walk through series on their blog.

http://blogs.msdn.com/b/astoriateam/archive/2011/01/20/oauth-2-0-and-odata-protecting-an-odata-service-using-oauth-2-0.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.