Release Notes
Full release notes can be downloaded here.Functional Changes
New settings are added for the Microsoft Office 365 Application.Fixed Issues
APS-8408 Office 365 subscriptions are not disabled in the Microsoft cloudAPS-8044 If a subscription has expired, the configuration task which tries to deactivate this subscription fails
Obtaining
The Microsoft Office 365 Application Package can be downloaded here.Installation
To install the Microsoft Office 365 Application, use the instructions provided in the PA Office 365 Integration Provider's Guide.Upgrade Procedure
To upgrade the Microsoft Office 365 Application, perform the following steps:1. Import the Microsoft Office 365 Application Package to Parallels Operations Automation (POA). See POA Provider's Guide >> Application Hosting > Managing Applications > Importing Application for details.
2. Upgrade the Office 365 Gateway:
a. Put the Microsoft Office 365 Application Package on the Office 365 Gateway Host.
b. Extract the MOSI-Gateway.zip file from the Microsoft Office 365 Application Package.
c. Stop the Office 365 Gateway IIS WebSite and Application Pool.
d. Place the content of the MOSI-Gateway.zip file over the existing Office 365 Gateway installation (confirm overwriting of existing files, except the web.config file). Refer to the Knowledgebase article https://kb.odin.com/en/114674 to find the folder where the Office 365 Gateway files are located.
e. If the upgrade is performed from Office 365 Integration 2.2, replace the existing web.config file with the file from the MOSI-Gateway.zip file.
Otherwise, modify the existing web.config file in the following way:
Go to the <log4net …> section.
After the AuditAppender appender, add the following appenders:
<appender name="XMLAppender" type="PatternFile.PatternFileAppender">
<file value=".\\App_Data\\XMLPayload\\Customer-%property{CustomerId}"/>
<appendToFile value="true"/>
<lockingModel type="log4net.Appender.FileAppender+MinimalLock"/>
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="%d %-2p %m%n"/>
</layout>
</appender>
<appender name="XMLAppenderCallback" type="log4net.Appender.RollingFileAppender">
<file value=".\\App_Data\\XMLPayload\\Callbacks"/>
<appendToFile value="true"/>
<rollingStyle value="Date"/>
<datePattern value="yyyyMMdd"/>
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="%d %-2p %m%n"/>
</layout>
</appender>
After the audit named logger, add the following named loggers:
<logger name="xml" additivity="false">
<level value="INFO"/>
<appender-ref ref="XMLAppender"/>
</logger>
<logger name="xml-callbacks" additivity="false">
<level value="INFO"/>
<appender-ref ref="XMLAppenderCallback"/>
</logger>
f. Start the Office 365 Gateway IIS WebSite and Application Pool.
Important: Do not rename or remove any files from the Office 365 Gateway installation.
3. Upgrade existing Microsoft Office 365 Application instances. See POA Provider's Guide >> Application Hosting > Bulk Application Upgrades for details.