Tokens in Internet Service Bus
Token providers are part of Identity Services in WF, they are typical username, password authentication as you see in the traditional web programming.
Biztalk new release supports two Token Providers
1. CardSpaceTokenProvider
2. AutomaticRenewalTokenProvider
I was using the option 1 in one of my sample application (MarketData Broadcast) in my forth coming article, over the period of time "CardSpaceTokenProvider" tries to renew the token by providing the Cardspace user interface, failing throws the following error
System.ServiceModel.Security.ExpiredSecurityTokenException: The Infocard token created during channel intialization has expired. Please create a new channel to reacquire token.
This can be good for the short running process.
AutomaticRenewalTokenProvider is as similar to the CardSpaceTokenProvider , but renewing the token automatically in the long runing process.
Choose your Best Token provider..

