Unfortunately I seem to have also bumped into the same problem. I'm using nginx to provide reverse proxy, and access on both http and https works for web and android (using JM Pascal's ALF-ACC Mobile lite, and Zia's Freshdocs for testing). But on ipad (and other iphones), with Alfresco Mobile, and Zia's Freshdocs, this only works on the http interface, and fails on the https interface with the error messages:"Alfresco Mobile did not connect to https://externalhostname:443/alfresco/service/cmis…The URL is correct, since when I just swipe off https, I can connect again via http.My steps are:1. mkdir /opt/alfresco/tomcat/shared/classes/META-INF2. vi /opt/alfresco/tomcat/shared/classes/META-INF/spring-webscripts-config-custom.xml<alfresco-config>
<config evaluator="string-compare" condition="Server">
<server>
<scheme>https</scheme>
<hostname>externalhostname.com</hostname>
<port>443</port>
<path>alfresco</path>
</server>
</config>
</alfresco-config>
3. check that /opt/alfresco/tomcat/conf/catalina.properties has:"shared.loader=${catalina.base}/shared/classes"
In fact, my installation already has shared.loader=${catalina.base}/shared/classes,${catalina.base}/shared/lib/*.jar
4. restart alfrescoOn the ipad, I can use Safari to connect to the URL https://externalhostname:443/alfresco/service/cmis, and after a login, get the cmis output, which shows my URLs are of the correct form,e.g. …
<collection href="https://externalhostname.com:443/alfresco/service/cmis/s/workspace:SpacesStore/i/05754434-33cb-410b-...">
…
Prior to doing the 4 steps above, the URLs were just "http://127.0.0.1:8080" so obviously this change is working.Any thoughts as to why this isn't working? Bearing in mind that on the Android platform, all the apps I've tried so far appear to be working, so is this an issue specific to the iOS (Apple, no Cisco) platform?