Archive
Posts Tagged ‘Session State Provider’
Use Velocity (CTP3) as Session State Provider
May 22, 2009
2 comments
The blog shows how to configure web.config to use Velocity as session state provider, but it only works for CTP2.
I did some experiment and found out the following configuration in web.config will work in Velocity CTP3:
<sessionState mode=“Custom“ customProvider=“SessionStoreProvider“>
<providers>
<add name=“SessionStoreProvider“ type=“Microsoft.Data.Caching.DataCacheSessionStoreProvider, ClientLibrary“ />
</providers>
</sessionState>
Categories: .NET, ASP.NET, C#, Distribued Cache, Session, Velocity
C#, CTP3, Distributed Cache, Session State Provider, Velocity, web.config