1234567891011121314151617181920212223242526272829303132333435363738 |
- <?xml version="1.0"?>
- <!--
- For more information on how to configure your ASP.NET application, please visit
- http://go.microsoft.com/fwlink/?LinkId=169433
- -->
- <configuration>
- <configSections>
- <!-- Append below entry to configSections. Do not overwrite the full section. -->
- <section name="dataCacheClients" type="Microsoft.ApplicationServer.Caching.DataCacheClientsSection, Microsoft.ApplicationServer.Caching.Core" allowLocation="true" allowDefinition="Everywhere"/>
- </configSections>
- <dataCacheClients>
-
- <dataCacheClient name="default">
- <hosts>
- <host name="[Insert Cache EndPoint]" cachePort="22233" />
- </hosts>
- <securityProperties mode="Message">
- <messageSecurity authorizationInfo="[Encrypted ACS token goes here]"></messageSecurity>
- </securityProperties>
- </dataCacheClient>
-
- <dataCacheClient name="SslEndpoint">
- <hosts>
- <host name="[Insert Cache EndPoint]" cachePort="22243" />
- </hosts>
- <securityProperties mode="Message" sslEnabled="true">
- <messageSecurity authorizationInfo="[Encrypted ACS token goes here]"></messageSecurity>
- </securityProperties>
- </dataCacheClient>
-
- </dataCacheClients>
- </configuration>
|