Dynamics AX 2012 enterprise portaalin asentaminen web farmiin (cluster, nlb) vaatii appfabricin (appfabric cache) konfiguroinnin lisäksi myös appfabric asetukset web.config tiedostoon. Dynamics AX enterprise .NET business connector pitää myös asentaa Sharepoint palvelimille.

Web.config asetukset

  <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" />
    <sectionGroup name="Microsoft.Dynamics">
     <!-- 6.x.0.0 = AX version, e.g. 6.3.0.0 -->
    <section name="Session" type="Microsoft.Dynamics.Framework.BusinessConnector.Configuration.SessionConfigurationSection, Microsoft.Dynamics.Framework.BusinessConnector, Version=6.x.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <section name="ServerState" type="Microsoft.Dynamics.Framework.Portal.Configuration.ServerStateConfigurationSection, Microsoft.Dynamics.Framework.Portal, Version=6.x.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <section name="AppFabricCaching" type="Microsoft.Dynamics.Framework.Portal.Configuration.AppFabricConfigurationSection, Microsoft.Dynamics.Framework.Portal, Version=6.x.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    </sectionGroup>
  </configSections>
  <dataCacheClient dataCacheServiceAccountType="DomainAccount">
    <localCache isEnabled="false" />
    <hosts>
      <!-- velocity server names -->
     <host name="server1" cachePort="22233" />   
     <host name="server2" cachePort="22233" />   
    </hosts>
  </dataCacheClient>
  <Microsoft.Dynamics>
   <Session Timeout="50" MaxSessions="100" />
   <ServerState Enabled="true" />
   <AppFabricCaching CacheName="cachename" />
  </Microsoft.Dynamics>