Upgrading Tomcat Server sslEnabledProtocols Property for Agentry Applications on iOS 7
If your SAP Mobile Platform installation supports Agentry applications on iOS 7 devices, upgrade the Tomcat Server sslEnabledProtocols property to avoid slow transmits.
The sslEnabledProtocols properties for Tomcat HTTP listener ports are located in <SMP_HOME>\Server\config_master\org.eclispe.gemini.web.tomcat\default-server.xml. Create a backup copy of this file before making any changes.
- In a text editor, open the default-server.xml file.
- In each of the lines below, replace sslEnabledProtocols="TLSv1" with sslEnabledProtocols="TLSv1,TLSv1.1,TLSv1.2":
... <Connector smpConnectorName="oneWaySSL" ... ... clientAuth="false" sslProtocol="TLS" sslEnabledProtocols="TLSv1" /> ... <Connector smpConnectorName="AdminSSL" ... ... clientAuth="false" sslProtocol="TLS" sslEnabledProtocols="TLSv1" smpServiceType="admin" ... ... <Connector smpConnectorName="mutualSSL" ... ... keyAlias="smp_crt" clientAuth="true" sslProtocol="TLS" sslEnabledProtocols="TLSv1"/> ...
- Save the file and restart SAP Mobile Platform Server.