0

我查看了以下链接http://msdn.microsoft.com/en-us/library/windowsazure/gg185668.aspxhttp://msdn.microsoft.com/en-us/library/windowsazure/gg185682.aspx

 I want to configure Windows Azure Cache (In role Caching). i found that there 
 are two options Co-located Topology and Dedicated Topology.But i m using co-located i
 had configured web.config has shown in link but i couldn't able to do that plz see below
 web.config i had configured but i m getting error 

我从过去 2 天开始尝试,但我可以得到任何解决方案。谢谢你

web.config 文件

 <configSections>
<section name="dataCacheClients" 
         type="Microsoft.ApplicationServer.Caching.DataCacheClientsSection, Microsoft.ApplicationServer.Caching.Core" 
         allowLocation="true" allowDefinition="Everywhere" />

<section name="cacheDiagnostics" 
         type="Microsoft.ApplicationServer.Caching.AzureCommon.DiagnosticsConfigurationSection, Microsoft.ApplicationServer.Caching.AzureCommon" 
         allowLocation="true" allowDefinition="Everywhere" />

 <system.web>
 <sessionState mode="Custom" customProvider="AFCacheSessionStateProvider">
  <providers>
    <add name="AFCacheSessionStateProvider" 
         type="Microsoft.Web.DistributedCache.DistributedCacheSessionStateStoreProvider, Microsoft.Web.DistributedCache" 
         cacheName="default" dataCacheClientName="default" applicationName="AFCacheSessionState"/>
  </providers>
</sessionState>
 </system.web>

 <dataCacheClients>

 <dataCacheClient name="default">
 <autoDiscover isEnabled="true" identifier="WebRole1" />
 </dataCacheClient>
 </dataCacheClients>
 <cacheDiagnostics>
<crashDump dumpLevel="Off" dumpStorageQuotaInMB="100" /></cacheDiagnostics> 
</configuration>

错误.png

在此处输入图像描述

4

1 回答 1

0

这纯粹是因为缓存客户端二进制文件正在尝试定位 WebRole1 但无法这样做,因为可能 WebRole1 不存在。您可以检查您在配置中给出的缓存角色名称吗?

你能在这里展示你的配置或分享一个缩小的复制品吗?

于 2013-10-15T12:37:47.570 回答