I'm interested in using Windows Identity Foundation for a new software architecture, but it isn't clear how to transport necessary context information between the client and server. Before I start lets take a look at the current architecture:
In the current 3-tier-architecture we're using Windows-Authentication with Winforms and WCF:
Client: WinForms > ApplicationLogic: WCF > Storage: MSSQL
I'll give you a close look: The user is authenticated with the associated roles with Kerberos SSO. The authenticated user start the WinForm-Application and connects to a specific datasource (approximately a MS-SQL-DB). Therefor the client application query all available datasources over an WCF-Service. The WCF-Service checks the windows-account and send the configured datasource back to the client. The user select inside the WinForms-Application a datasource. In addition to the selected datasource the client queries all matching context information A and context information B from the same service. Finally the client calls a Operation named 'CreateSession' with all selected context information: selected datasource, selected context information A, selected context information B. The operation of the service returns a string representing the sessionXml. This xml contains the selected context information as xml. As from now the client use the sessionXml for every prospective service call. All services receive a MessageContract which contains the sessionXml (as MessageBody-Element) from the client. The service use a scope called SessionScope to process the request. Because the SessionScope contains the context information called datasource, the used persistent layer knows which DB should be used.
So that's how the old architecture acts.
In the future where will be a 4-tier architecture, using ASP.NET MVC4 on the presentation-side and WCF on the server-side:
Client: HTML5 + JS > Presentation: ASP.NET MVC > ApplicationLogic: WCF > Storage: MSSQL
We currently favor Windows Identity Foundation for integrating claim based authentication in this new architecture. In the first approach WIF will takes place in the ASP.NET and the WCF-Service for handling the user authentication.
Client: Browser > (WIF) Presentation: ASP.NET MVC > (WIF) ApplicationLogic: WCF > Storage: MSSQL
Continuing there will be the following claims:
- identity/claims/name | the username (e.g. user1)
- identity/claims/role | the profiles the user belongs to (e.g. administrators)
And the claims are transported in a SAML-Token. This is pretty similar to how WIF works and how WIF is documented.
But...
What about the context information: the datasource and the context information A and B? Where to put them? These information is needed in every single service-call. So I could put them as an MessageHeader (not in the body) and work with OperationContextScope (maybe in a abstract parent class MessageRequestBase). Or should I put them into the SAML-Token by implementing an custom STS? Should it be the same token or an additional token?
I think this a common scenario .... so it would be nice to hear some best practices.
best regards