0

複数を使用すると、このエラーが発生しますdataCacheClientsこの質問この msdn の質問を見たことがありますが、AppFabric 1.0 の時点では、複数dataCacheClientsはできませんでした。Microsoftは、私が現在使用しているAppFabric 1.1 ( changelogを参照) にこの機能を追加しました。このエラーが発生する理由についてのアイデアはありますか? これが私の設定ファイルです:

<configuration>
<configSections>

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

<dataCacheClients>
<!--client 1 for caching-->
<dataCacheClient name="dataCacheClient1">
  <localCache isEnabled="false" sync="NotificationBased" objectCount="100000"/>
  <clientNotification pollInterval="5"/>
  <hosts>
    <host name="!2345623ghf1.fg.com" cachePort="22233"/>
  </hosts>
  <securityProperties mode="None" protectionLevel="None" />
  <transportProperties maxBufferPoolSize="2147483647" maxBufferSize="2147483647" channelInitializationTimeout="60000" receiveTimeout="900000"/>
</dataCacheClient>
<!-- client 2 for session -->
<dataCacheClient name="dataCacheClient2">
  <localCache isEnabled="false" sync="NotificationBased" objectCount="100000"/>
  <clientNotification pollInterval="5"/>
  <hosts>
    <host name="!2345623ghf2.fg.com" cachePort="22233"/>
  </hosts>
  <securityProperties mode="None" protectionLevel="None" />
  <transportProperties maxBufferPoolSize="2147483647" maxBufferSize="2147483647" channelInitializationTimeout="60000" receiveTimeout="900000"/>
</dataCacheClient>


</dataCacheClients>


<system.web>
<compilation debug="true" targetFramework="4.0">
</compilation>

<sessionState
  mode="Custom"
  customProvider="AppFabricCacheSessionStoreProvider">
  <providers>
    <add name="AppFabricCacheSessionStoreProvider"
         type="Microsoft.Web.DistributedCache.DistributedCacheSessionStateStoreProvider, Microsoft.Web.DistributedCache"
         cacheName="default"
         dataCacheClientName="dataCacheClient2" />
  </providers>
</sessionState>

ノート:

にあるDLLを使用しています.\Program Files\AppFabric 1.1 for Windows Server

エラーの詳細:

ここに画像の説明を入力

4

2 に答える 2