Changes between Version 2 and Version 3 of Release/2.2RC1/Notes


Ignore:
Timestamp:
Oct 7, 2010, 4:02:24 PM (14 years ago)
Author:
trevorwekel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Release/2.2RC1/Notes

    v2 v3  
    3939Please [wiki:SubmitTicket report any defects].
    4040
     41== Compatibility ==
     42Click [wiki:2.2MigrationInstructions here] for instructions on how to migrate to MGOS 2.2 from older releases.
     43
     44MGOS 2.2.0 is compatible with [http://fdo.osgeo.org/content/fdo-350-downloads FDO 3.5.0].
     45
     46== FDO ==
     47
     48FDO is compiled against the Oracle 11.2 instant client available from [http://www.oracle.com/technology/software/tech/oci/instantclient/index.html?rssid=rss_otn_soft Instant Client Downloads].  For a Linux installation, the Oracle shared library path should be included in LD_LIBRARY_PATH or ldconfig.
     49
     50FDO 3.5 (which this release uses) introduces a [http://trac.osgeo.org/fdo/wiki/FDORfc22 simplified CONCAT expression function]. This function is available for theming and filtering purposes.
     51
     52== Installer notes ==
     53
     54The installer has been updated to allow for greater customisation of the initial configuration:
     55
     56 * User-defined server/web port numbers
     57 * User-defined virtual directory name for both Apache and IIS
     58 * User-defined Apache port number
     59 * The choice of which web site to install the web extensions under (IIS 6.0)
     60
     61Currently the installer is still only 32-bit.
     62
     63== API changes ==#ApiChanges
     64[wiki:MapGuideRfc66 RFC 66] added client side pinging for the !AjaxViewer to keep sessions alive.  API changes include a new HTTP GETSESSIONTIMEOUT and !MgSiteConnection.!GetSessionTimeout().  An <!EnablePingServer> boolean element was added to !WebLayout.  Since these are new APIs, there is no impact on existing code.
     65
     66[wiki:MapGuideRfc70 RFC 70] introduces new API for creating and modifying the schema of a feature source.  Delete methods are added to !MgFeatureSchema, !MgClassDefinition and !MgPropertyDefinition.  A new !ApplySchema() method was added to !MgFeatureService.  A Decimal property was added to !MgPropertyType for schema purposes. Since these are new APIs, there is no impact on existing code. 
     67
     68
     69[wiki:MapGuideRfc73 RFC 73] introduces a new !GetResourceContents() API to !MgResourceService.  This new functionality is used internally by !MgMap to reduce web extensions / server crosstalk when creating an !MgMap object from a map definition.  Since this is new API, there is no impact on existing code.
     70
     71[wiki:MapGuideRfc74 RFC 74] introduces a boolean "cascade" parameter to !MgResourceService.!MoveResource().  If cascade is enabled, dependant resources will be updated to point at the new location for the moved resource. Since this is new API, there is no impact on existing code.
     72
     73[wiki:MapGuideRfc78 RFC 77] allows !MgFeatureService.!CreateFeatureSource() to create a feature source without defining the feature class and spatial context.  The previous implementation would throw an !MgInvalidArgumentException.  '''This behaviour change may affect existing code.'''[[BR]]
     74
     75[wiki:MapGuideRfc78 RFC 78] introduces explicit transaction management for Feature Service.  A new !MgTransaction object is created and !MgFeatureService !ExecuteSqlQuery, !ExecuteSqlNonQuery, and !UpdateFeatures are overloaded to use the new transaction object.  Since this is new API, there is no impact on existing code.
     76
     77[wiki:MapGuideRfc79 RFC 79] adds more detailed exception classes derived from !MgFdoException.  The derived classes provide more information than the generic !MgFdoException.  Existing code should continue to work with !MgFdoException and should be updated to make use of the derived exception classes.
     78
     79[wiki:MapGuideRfc80 RFC 80] adds parameter binding support to !MgFeatureService !ExecuteSqlQuery and !ExecuteSqlNonQuery.  Since this is new API, there is no impact on existing code.
     80
     81[wiki:MapGuideRfc82 RFC 82] extends the !MapGuide readers to support property access by index in addition to property name.  Accessing properties by index instead of property name may be faster for tight loop processing.  Since this is new API, there is no impact on existing code.
     82
     83[wiki:MapGuideRfc84 RFC 84] adds database row fetch size to !MgFeatureQueryOptions and !MgFeatureService.!ExecuteSqlQuery.  Specifying a fetch size may improve FDO performance by reducing database round trips.    Since this is new API, there is no impact on existing code.
     84
     85[wiki:MapGuideRfc87 RFC 87] adds to the schema returned from the HTTP GETSITEINFO request.  If version 2.2.0 of GETSITEINFO is used, the following addiitional information will be returned working set, virtual memory, server cache size and server cache dropped entries.  Since this is new version of GETSITEINFO, there is no impact on existing code.[[BR]][[BR]]
     86 
     87[wiki:MapGuideRfc89 RFC 89] introduced a number of changes required by the upgrade to PHP 5.3.  '''These changes break existing code.'''
     88{{{
     89MgException class changes:
     90Change GetMessage() to GetExceptionMessage()
     91
     92MgResources class changes:
     93Change GetMessage() to GetResourceMessage()
     94
     95MgCoodinateSystem class changes:
     96Change GetCode() to GetCsCode()
     97Change SetCode() to SetCsCode() for consistency.
     98Change IsLegalCode() to IsLegalCsCode() for consistency.
     99
     100MgCoodinateSystemDatum class changes:
     101Change GetCode() to GetDtCode()
     102Change SetCode() to SetDtCode() for consistency.
     103Change IsLegalCode() to IsLegalDtCode() for consistency.
     104
     105MgCoodinateSystemEllipsoid class changes:
     106Change GetCode() to GetElCode()
     107Change SetCode() to SetElCode() for consistency.
     108Change IsLegalCode() to IsLegalElCode() for consistency.
     109
     110MgWebInvokeScriptCommand class changes:
     111Change GetCode() to GetScriptCode()
     112Change SetCode() to SetScriptCode() for consistency.
     113}}}
     114
     115The RFC 87 API changes will impact:
     116 * Viewers
     117 * Sample applications
     118 * Development guides
     119 * Existing applications
     120
     121
     122== New Server Configuration (serverconfig.ini) Options ==
     123
     124== New Web Configuration (webconfig.ini) Options ==
     125
     126== Disk Space ==
     127
     128The installer requires at least 1.5GB of disk space on C: during installation. Otherwise installation may not proceed.
     129
     130If you do not have sufficient space on C:, you can open the installer file with [http://www.7-zip.org 7-zip] and extract the contents to another drive, and run the extracted setup.exe from there.  It may also be helpful to set your TEMP environment variable to a different drive.
    41131
    42132== Submissions ==