Difference between revisions of "Version 10.0 Installable (Feb 2014)"
imported>Aeric |
imported>Aeric |
||
(109 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
Release Notes for the installable version of the {{EnterpriseBrand}}. | |||
:{| border="1" align="right" cellpadding="5" cellspacing="1" | |||
| | |||
'''''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:'' | ||
:* [[ | :* Platform [[Release Notes]] | ||
:* [[All | :* [[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> | <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> | </blockquote> | ||
== | |||
==Installable Version Functionality== | |||
These features are of primary interest to installers.<br> | |||
''See also:'' Platform [[Release Notes]] | |||
<blockquote> | <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]] | |||
====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]] | |||
</blockquote> | </blockquote> | ||
== | ==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> | <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]] | |||
==== | ==== <font color="purple">''Language Packs''</font> ==== | ||
: | : 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:'' [[ | :''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]] | |||
</blockquote> | </blockquote> | ||
<noinclude> | <noinclude> | ||
[[Category: | [[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:
- Platform Release Notes
- All Release Notes
- Quick Install Guide (development and testing)
- Platform Installation Guide (production installation)
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.
- 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. - 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