シンプルなWindows Server App Fabric 1.0デモ コンソール アプリケーションを実行すると、次のエラーが発生します。
ErrorCode<ERRCA0021>:SubStatus<ES0001>:Server collection cannot be empty.
私を助けてください..何が足りないのですか..?? 私はインターネット上のあらゆる場所を見てきましたが、この問題を解決するものは何もないようです。ありがとう..
私のアプリケーションは次のとおりです。
static void Main(string[] args)
{
var factory = new Microsoft.ApplicationServer.Caching.DataCacheFactory(); <--- *** Error here
var cache = factory.GetDefaultCache();
var key = "mykey";
var obj = cache[key];
if (obj == null)
{
cache[key] = "I am data for caching";
}
obj = cache[key];
Console.WriteLine(obj);
Console.Read();
}
私の app.config は次のとおりです。
<?xml version="1.0"?>
<configuration>
<configSections>
<section name="dataCacheClients"
type="Microsoft.ApplicationServer.Caching.DataCacheClientsSection, Microsoft.ApplicationServer.Caching.Core" />
</configSections>
<dataCacheClients>
<dataCacheClient>
<hosts>
<host name="MyMachineNameHere" cachePort="22233" />
</hosts>
</dataCacheClient>
</dataCacheClients>
</configuration>