Difference between revisions of "Version 10.0 Installable (Feb 2014)"

From AgileApps Support Wiki
imported>Aeric
(Created page with "{{subst:ISV Release Notes}}")
 
imported>Aeric
 
(131 intermediate revisions by the same user not shown)
Line 1: Line 1:
Title: Version N.M Installable Version Release Notes
Release Notes for the installable version of the {{EnterpriseBrand}}.


Usage: <nowiki>{{subst:ISV Release Notes}}</nowiki><br>
:{| border="1" align="right" cellpadding="5" cellspacing="1"
Change [[Installable Version Release Notes]] to point to new page
|
'''''See also:'''''
* [[All Release Notes]]
* [[Release calendar]]
|}
 
__TOC__
==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:''
''See also:''
:* [[:Category:Installable Version]] for earlier installable-version Release Notes
:* Platform [[Release Notes]]
:* [[All Release Notes|Platform Release Notes for all versions of the platform]]
:* [[All Release Notes]]
:* [[Quick Install Guide]] (development and testing)
:* [[Platform Installation Guide]] (production installation)
 
==Installation Notes==
 
For either a [[Installing and Upgrading the Application Server#First-Time Installation|First-Time Installation]] or [[Installing and Upgrading the Application Server#Upgrades|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.
# Before upgrading, back up any custom entries added to <tt>tomcat/webapps/networking/WEB-INF/web.xml</tt>,<br>because that file will be overwritten during the upgrade process.
# After the upgrade, add back your custom entries.
 
<blockquote>
'''Important:'''<br>
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:'''
::<syntaxhighlight lang="xml" enclose="div">
<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>
</syntaxhighlight>
 
:'''New:'''
::<syntaxhighlight lang="xml" enclose="div">
<servlet-mapping>
    <servlet-name>MultiUrlPatternServlet</servlet-name>
    <url-pattern>/a</url-pattern>
    <url-pattern>/b</url-pattern>
</servlet-mapping>
</syntaxhighlight>
</blockquote>
 
==Installable Version Functionality==
These features are of primary interest to installers.<br>
''See also:'' Platform [[Release Notes]]
 
<blockquote>
====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]]


==Preparing for an Upgrade==
====New Licensing Mechanism====
Before following the [[Installing and Upgrading the Application Server#Upgrades|platform upgrade process]], upgrade dependent utilities to the minimum levels specified in the [[Software Requirements]].
: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]]
</blockquote>


In addition, these upgrades are highly recommended. Although they are not required, they improve performance and have been heavily tested, so they are certified for use with the platform:
==Platform Functionality==
# ...
These features are coming to the cloud soon. But they're in the installable version now.<br>
''See also:'' Platform [[Release Notes]]
<blockquote>
==== <font color="purple">''Web Services Production-Ready with these Enhancements!''</font> ====
:* 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]]


==New Platform Functionality==
==== <font color="purple">''Language Packs''</font> ====
:;Feature:
: 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.
:: Description.
:''Learn more:'' [[Company Information#Available Language Settings]]


ACTIVATE THIS CATEGORY
====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]]
</blockquote>
<noinclude>
<noinclude>


[[Category:Installable Version]]
[[Category:ISV Release Notes]]
-->
</noinclude>
</noinclude>

Latest revision as of 07:00, 21 February 2017

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