Version 10.0 Installable (Feb 2014)

From AgileApps Support Wiki

Release Notes for the installable version of the AgileApps Cloud platform.

See also:

About the Installable Version

The installable version of the platform lets you create and manage a private cloud behind your corporate firewall. It can also be used to set up a public cloud that serves multiple clients--generally with a shared application and global data. This page highlights changes to the installation process, along with features of the new release.

See also:

Installation Notes

For either a First-Time Installation or platform upgrade, ensure that dependent utilities are at the minimum levels specified in the Software Requirements.

Special Upgrade Instructions

This version of the platform installs Tomcat 7.0.47.

  1. Before upgrading, back up any custom entries added to tomcat/webapps/networking/WEB-INF/web.xml,
    because that file will be overwritten during the upgrade process.
  2. After the upgrade, add back your custom entries.

Important:
The format of servlet entries that include several URL patterns has changed in Tomcat 7.0.47. With the new format, all of the url patterns are included in single servlet-mapping as shown here:

Old:
<servlet>
    <servlet-name>MultiUrlPatternServlet</servlet-name>
    <servlet-class>com.abc.MultiUrlPatternServlet</servlet-class>
</servlet>

<servlet-mapping>
    <servlet-name>MultiUrlPatternServlet</servlet-name>
    <url-pattern>/a</url-pattern>
</servlet-mapping>

<servlet-mapping>
    <servlet-name>MultiUrlPatternServlet</servlet-name>
    <url-pattern>/b</url-pattern>
</servlet-mapping>
New:
<servlet-mapping>
    <servlet-name>MultiUrlPatternServlet</servlet-name>
    <url-pattern>/a</url-pattern>
    <url-pattern>/b</url-pattern>
</servlet-mapping>

Installable Version Functionality

These features are of primary interest to installers.
See also: Platform Release Notes

LDAP Integration

Configure the platform to automatically authenticate users against an LDAP Server when they log in.
Learn more: LDAP Configuration

Global Data

Data added to a global tenancy can be seen and used by all tenants, with a single point of control for additions, updates, and deletes.
Learn more: Global Data

New Licensing Mechanism

Beta installers did the installation first and then requested a license. In this production-ready release, a license is obtained first. Supplying it is part of the installation process.
Learn more: Platform License

Platform Functionality

These features are coming to the cloud soon. But they're in the installable version now.
See also: Platform Release Notes

Web Services Production-Ready with these Enhancements!

  • External Lookup fields allow users to select a record from an external database.
  • Fault-handling paths for Web Services can be defined in a Process
Learn more: Web Services

Language Packs

The platform interface can be presented in a variety of different languages, including French, Italian, German, and Spanish, as well as English. The choices available to users are determined by your Company Settings.
Learn more: Company Information#Available Language Settings

MIME Types

Additional MIME Types can be added to the Apache Web Server configuration, so that documents and Static Resources are processed properly, when delivered to the end user's browser.
Learn more: Adding MIME Types