Note that there are some explanatory texts on larger screens.

plurals
  1. POAppFabric Error ERRCA0017 SubStatus ES0006
    primarykey
    data
    text
    <p>Just installed Windows Server AppFabric 1.1 on my Windows 7 box and I'm trying to write some code in a console application against the cache client API as part of an evaluation of AppFabric. My app.config looks like the following:</p> <pre><code> &lt;configSections&gt; &lt;section name="dataCacheClient" type="Microsoft.ApplicationServer.Caching.DataCacheClientSection, Microsoft.ApplicationServer.Caching.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" allowLocation="true" allowDefinition="Everywhere" /&gt; &lt;/configSections&gt; &lt;dataCacheClient&gt; &lt;hosts&gt; &lt;host name="pa-chouse2" cachePort="22233" /&gt; &lt;/hosts&gt; &lt;/dataCacheClient&gt; </code></pre> <p>I created a new cache and added my domain user account as an allowed client account using the Powershell cmdlet Grant-CacheAllowedClientAccount. I'm creating a new DataCache instance like so:</p> <pre><code>using (DataCacheFactory cacheFactory = new DataCacheFactory()) { this.cache = cacheFactory.GetDefaultCache(); } </code></pre> <p>When I call DataCache.Get, I end up with the following exception:</p> <pre><code>ErrorCode&lt;ERRCA0017&gt;:SubStatus&lt;ES0006&gt;:There is a temporary failure. Please retry later. (One or more specified cache servers are unavailable, which could be caused by busy network or servers. For on-premises cache clusters, also verify the following conditions. Ensure that security permission has been granted for this client account, and check that the AppFabric Caching Service is allowed through the firewall on all cache hosts. Also the MaxBufferSize on the server must be greater than or equal to the serialized object size sent from the client.) </code></pre> <p>I'd be very grateful if anyone could point out what I'm missing to get this working.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload