|
|
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
5 Articles match "Token","WCF"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential Windows Communication Foundation 3.5 - WCF
Windows Communication Foundation (WCF) replaces previous technologies such as.NET remoting, ASMX, and COM+. Because it incorporates web service standards, WCF enables interoperability with other platforms such as Java/Unix. Day 1 Service-Oriented Architecture WCF encourages you to write service oriented applications. This first module introduces you to SOA which is the key to understand why WCF works the way it does. ? WCF Overview and Architecture In this module, we learn what a WCF service is. WCF offers another program model at a lower level.
DevelopMentor Courses
- Friday, April 16, 2010
Advanced Windows Communication Foundation
Windows Communication Foundation (WCF) replaces previous technologies such as.NET remoting, ASMX, and COM+. Because it incorporates web service standards, WCF enables interoperability with other platforms such as Java/Unix. Day 1 Asynchronous Processing WCF supports asynchronous IO via operation contracts with the common Begin/End pattern. WCF includes the "Web Programming Model" which allows building Restful services with an easy to use API. Finally, we learn how authorization works in WCF, including impersonation and role-based security. Starting with.NET 3.5,
DevelopMentor Courses
- Monday, March 1, 2010
Essential Windows Communication Foundation
Windows Communication Foundation (WCF) replaces previous technologies such as.NET remoting, ASMX, and COM+. Because it incorporates web service standards, WCF enables interoperability with other platforms such as Java/Unix. Day 1 Service-Oriented Architecture WCF encourages you to write service oriented applications. This first module introduces you to SOA which is the key to understand why WCF works the way it does. ? WCF Overview and Architecture In this module, we learn what a WCF service is. WCF offers another program model at a lower level.
DevelopMentor Courses
- Friday, June 12, 2009
|
35 Articles match "Token","WCF"
|
The Latest from DevelopMentor
|
MORE
|
|
A more elegant way of embedding a SOAP security header in Silverlight 4
The current situation with Silverlight is, that there is no support for the WCF federation binding. This means that all security token related interactions have to be done manually. Requesting the token from an STS is not really the bad part, sending it along with outgoing SOAP messages is what’s a little annoying. It seems that starting with SL4 there is more support for traditional WCF extensibility points – especially IEndpointBehavior , IClientMessageInspector. rstr = rstr; }. public void AfterReceiveReply( ref Message reply, object correlationState). { }.
www.leastprivilege.com
- Thursday, May 13, 2010
Thinktecture.IdentityModel: WIF Support for WCF REST Services and OData
The latest drop of Thinktecture.IdentityModel includes plumbing and support for WIF, claims and tokens for WCF REST services and Data Server (aka OData). Cibrax has an alternative implementation that uses the WCF Rest Starter Kit. Features include: generic plumbing for all WebServiceHost derived WCF services. support for SAML and SWT tokens. based solely on native WCF extensibility points (and WIF). This post walks you through the setup of an OData / WCF DataServices endpoint with token authentication and claims support. public IQueryable.
www.leastprivilege.com
- Wednesday, May 5, 2010
Using Silverlight to Access WIF secured WCF Services (Part 3)
In this last part of the series (see here and here ) I want to show you how to use the WIF/SL integration ClaimsIdentitySessionManager to request tokens and talk to WIF secured services. Once registered, it can encapsulate the process of requesting a token for a relying party, caching that token as well as setting the SOAP security header for outgoing service requests. Here you can specify the endpoint address of the WS-Trust token services as well as the credential type. if not, requests the token and caches it. Registration. private void CallService(). {.
www.leastprivilege.com
- Tuesday, March 30, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
(SAML) Token Creation in a Geneva STS
But if you need more control over the generated tokens, it’s worthwhile to have a closer look. Internally the SecurityTokenService class drives a “token information gathering” pipeline which results in the construction of a SecurityTokenDescriptor (a token neutral description) of the token to be issued. After that the descriptor is passed on to a SecurityTokenHandler that creates the security token. In the last step, the generated token is wrapped in an RSTR and sent back. reates the security token handler that is later used for creating the token.
www.leastprivilege.com
- Saturday, November 22, 2008
-
Using Silverlight to Access WIF secured WCF Services
talk a lot about claims, tokens and WIF/ADFS 2 to customers. Another technology that comes up very often is Silverlight – and especially the “story” of Silverlight and WCF/WIF. This back-end service requires an issued token from a STS. Those of you with WCF background will say: “that’s what the federation bindings in WCF are for”. Requesting a Token. Since Silverlight has no support for WS-Trust, we must find another way to request a token from a STS. Thanks to WIF this is not hard to do when you control the token service. Passive. Active.
www.leastprivilege.com
- Wednesday, October 28, 2009
-
Geneva is the new WCF Security
Geneva has evolved to not only a an extension to WCF/ASP.NET for STS/token related things - it also changes how base WCF security works - to the better IMO. Another big simplification with Geneva comes to custom token/credential types (ever tried adding a new credential type of WCF? So in summary - Geneva replaces parts of the WCF security system, simplifies it and makes it easier to extend - even if you are not using a security token service. Tags: IdentityModel;WCF Let me give you an example: Trusted certificate issuers. like that.
www.leastprivilege.com
- Thursday, October 30, 2008
-
Integrating Simple Web Tokens (SWT) with WCF REST Services using WIF
The Simple Web Token (SWT) is a new & simple token format that was created by Microsoft, Google and others. uses this token type. Why yet another token type? The downsides are – it is not a widely adopted token format (current spec version is 0.9.5.1) Since I had to do some ACS work recently, I crafted up a simple SWT integration for WCF based REST services (works in ASP.NET as well). The plumbing looks for a SWT token either on the Authorization or X-Authorization header as well as on the query string. See here for specs. X.509 based).
www.leastprivilege.com
- Monday, February 8, 2010
-
Securing WCF Data Services using WIF
Since WCF Data Services is just a normal WCF service (using the web programming model), all the typical security APIs and extensibility points apply. For accepting and converting more advanced token types like SWT or SAML, you need to plugin your own token handling. gave it a try for SWT tokens (see here for the general SWT integration story). This uses my SWT plumbing to turn incoming SWT tokens into an IClaimsPrincipal. Sending a token header to the Data Service. The next step is to send a token to the Data Service. public Expression.
www.leastprivilege.com
- Monday, February 15, 2010
-
Thinktecture Security Token Service Starter Kit
The other reason is that starter STS is not terribly complex and could be used as a learning tool on how to write custom token services. Some features: active and passive security token service. tokens. easy configuration – you don’t have to deal with Geneva or WCF settings directly. I am happy to announce the “Thinktecture STS Starter Kit” sample. The STS starter kit is a compact, easy to use identity provider that is completely based on the ASP.NET provider infrastructure. The motivation behind writing this sample is twofold. You could e.g. FedUtil. Have fun!
www.leastprivilege.com
- Monday, May 25, 2009
-
Geneva integration into WCF
Having done quite a bit of WCF customization myself, it is fun to see how Geneva framework wires itself up into the WCF runtime. The high-level goals are as follows: route the token provisioning, serialization and authentication through the Geneva pipeline. allow setting issued tokens directly on a ChannelFactory. replace the standard WCF ServiceCredential with a FederatedServiceCredential. this in turn creates the token provider, serializer and authenticator. create token resolvers for. Persisting the bootstrap token also happens here.
www.leastprivilege.com
- Thursday, March 12, 2009
|
|
|