Skip to main content
A newer version of this page is available. .

Deployment Recommendations for ASP.NET Applications

  • 2 minutes to read

This topic explains how to reduce the memory requirements on your server(s) and secure your application.

  1. Scale your ASP.NET XAF applications

    You can configure a web farm to achieve high scalability in your ASP.NET XAF application. XAF ASP.NET applications are stateful (maintain session state) when they are used on web farm, and each user session requires about 10 MB of memory. This means that a client’s requests should be routed to the same content server because the session management is not centralized. To learn more about how to configure a web farm for stateful applications, refer to the HTTP Load Balancing using Application Request Routing article. Step 3 of this article describes how to enable the client affinity feature.

    Additional resources:

  2. Server Mode

    There is no limit on the number of the application’s database records. However, you can use the Server Mode for List Views to only retrieve the required records (visible in the grid) from the database. You can set the Server Mode for all List Views. To do this, use the Options or Views | <ListView> node’s IModelOptions.DataAccessMode property. Note that in server mode, a List View does not have simultaneous access to all the Collection Source’s type objects. This imposes limitations listed in the Server Mode article.

  3. Supported session state modes

    The XafApplication class, as well as other XAF entities stored in the session, are not serializable. An XAF application cannot use the StateServer, SQLServer and Custom session state modes; use the InProc session state mode instead.

See Also