1
Info: Using DocumentUltimate on Azure
Announcement by Cem Alacayir - 7/14/2017 at 1:23 AM
Employee Post

When using DocumentUltimate on Azure (or on other Cloud service or in multi-server environments), you need to make sure:

  1. Sessions are shared between instances.
     
  2. Document cache folder is shared between instances.

 

Sharing sessions:

When you have multiple App Services or VMs in Azure, you need to make sure your sessions are shared between multiple instances. This is because Azure has a default internal load balancer which automatically distributes HTTP requests randomly to your instances. This is not a load balancer you own or create, it's internal load balancer of Azure Cloud Services. If your sessions are not shared between instances, you will get this error:
 
Session has expired, the page will be automatically refreshed in 10 seconds.
This is what happens:
 
  1. You view your site page which hosts DocumentViewer and this hits Instance A.
     
  2. DocumentViewer starts loading the document and sends request to Azure.
     
  3. Azure's default internal load balancer randomly decides this request should be sent to Instance B.
     
  4. Instance B receives the request but it does not know this session because it was initiated on Instance A.
     
  5. So you receive an error that says “Session has expired”
The problem is if you have more than 1 instance on Azure, each HTTP request can arrive to a different instance. Azure's default internal load balancer decides to send a HTTP request to one of you instances.
 

The best way to share sessions between instances on Azure is using RedisSessionStateProvider in your project. This is easy to do:

 
  1. In your project that hosts DocumentUltimate, open Web.config and insert these settings (<sessionState> tag):
     
    <system.web>
    .
    .
    .
      <sessionState mode="Custom" customProvider="RedisSessionStateProvider">
        <providers>
        <add name="RedisSessionStateProvider"
          type="Microsoft.Web.Redis.RedisSessionStateProvider,
            Microsoft.Web.RedisSessionStateProvider.Internal, Version=2.2.5.0, Culture=neutral, PublicKeyToken=a6f3cafa178e6038"
          connectionString="myConnectionString" />
        </providers>
      </sessionState>
    .
    .
    .
    </system.web>
    As of DocumentUltimate v3.2.5, Microsoft.Web.RedisSessionStateProvider is already bundled (inside GleamTech.Core 1.9.5 DLL) so you don't need to install any additionaly Nuget packages. Note the green higlighted part which instructs to load type Microsoft.Web.Redis.RedisSessionStateProvider from internal bundled DLL. If you need to use official Nuget package for some reason, see RedisSessionStateProvider page for instructions.
     
  2. Put your Azure Redis connection string in yellow highlighted part.

    To find out your connection string;

    - Go to Azure Portal and search for redis. Create a new one with default settings (you only need to give it a name like xxx) or click existing redis cache.

    - In Settings section click Access Keys and it will show you the connection string. Copy the one showed in Primary connection string (StackExchange.Redis) and paste it in your Web.config at yellow highlighted place.
     
  3. Now DocumentUltimate will be able to make use of Azure Redis Cache for session.
 

If you don't want to use RedisSessionStateProvider, you can also:
 

  • Change LoadBalancerDistribution to sourceIP mode for Azure's default internal load balancer. It seems this is possible as described here:
    https://docs.microsoft.com/en-us/azure/load-balancer/load-balancer-distribution-mode
    This way session will not be shared, however you will guarantee that all HTTP requests of same session arrives to the same instance because distribution will be made according to sourceIP instead of default more random combination.
     
  • If you have your own load balancer in Azure, you can already go to Load balancing rules -> Session persistance and select Client IP for same effect.

 

Sharing document cache:

The other problem you will have on Azure is sharing document cache between instances. If you don't use a common document cache folder, you will get this error:
 
Document cache info not found

It's easy to share a document cache folder between Azure VMs:

  1. Create a network share for App_Data\DocumentCache folder on VM1 (via Share command on context menu). See detailed instructions on how to create network shares on Azure VMs:
    https://blogs.msdn.microsoft.com/windows_azure_connect_team_blog/2011/01/20/windows-azure-connect-use-case-enable-file-sharing-on-windows-azure-vm/
     
  2. Set CachePath to this network share.

    - In code:
    DocumentUltimateWebConfiguration.Current.CachePath = @” \\VM1\DocumentCache”;
     
    - Or in Web.config AppSettings:
     
    <appSettings>
    	<add key="DocumentUltimateWeb:CachePath" value="\\VM1\DocumentCache" />
    </appSettings>
    If both instances on VM1 and VM2 have this path set then they can share the cache folder.
     
  3. Make sure you set correct permissions for the network share:

    When you use common network folder for document share e.g. which is hosted on VM1, VM2 app pool needs to have read and write permission on this share.

    For example by default IIS AppPool\DefaultAppPool  user on VM2 will not be able to access the network share on VM1.

    - Go to IIS of VM2 and edit your application pool to use a common user eg. (user: Test, password: Test) as the pool identity. If there is a common user with same password on both VM1 and VM2 , then VM1 will allow VM2 to connect to the network share.

    - You can also try giving permissions to Network Service account if you don't want create a common user on both VMs.

    - You can also use a domain account (if you have a domain) as the pool identity.

    Once the VM2 application pool can access the network share, DocumentViewer will work as expected.

Sharing document cache folder between Azure App Services:

You will not be able to create network shares in App Services as you don't have access to Remote Desktop connection like for VMs, however you may be able to use Azure Files for this purpose:
https://docs.microsoft.com/en-us/azure/storage/storage-file-how-to-use-files-portal
 
In future versions, we plan to add Azure Blobs support for DocumentCache class so that it will not be dependent only on physical file systems.

Reply to Thread