An Akuiteo consultant helps the customer with the technical installation, set up and testing environment before delivering the app to the other users.
In case you are working on an Akuiteo server version 3.8, make sure that scripts #40002 and #40003 have been correctly triggered on your database.
50**** MOBILE **
5001** MOBILE NOTE DE FRAIS
5002** MOBILE TEMPS
5003** MOBILE PLANNING
500301 MOBILE PLANNING CONSULTER
500302 MOBILE PLANNING MODIFIER
500303 MOBILE PLANNING MODIFIER PLANNING VALIDE
5004** MOBILE ABSENCE ** (4.1 only)
The Akuiteo Server must be accessible externally to allow mobile synchronization. To do so, the customer's Chief information officer must configure the network by opening an Internet port compliant with the customer's network security.
To allow the mobile application to connect to the Akuiteo server, the servers.xml file must be configured.
When the mobile app is launched, it connects to https://myserver: portssl/akuiteo/MVC/update/serveurs.xml.
The servers.xml file is scanned and the application connects to the first server that meets the following criteria:
<serveurs>
<serveur id="ak" name="Akuiteo RE7 (https)" default="true" protocol="https">
<description>Akuiteo RE7</description>
<host>monserveur.akuiteo.fr</host>
<port>20000</port>
<application>akuiteo</application>
</serveur>
<serveur id="akhttps" name="Akuiteo (https)" mobile="true" protocol="https">
<description>Akuiteo</description>
<host>monserveur.akuiteo.fr</host>
<port>443</port>
<application>akuiteo</application>
</serveur>
<serveur id="interne" name="interne.Akuiteo" default="false"> <description>INTERNE
RE7</description> <host>monserveur.akuiteo.lan</host> <port>20001</port>
<application>akuiteo</application>
</serveur>
</serveurs>
In this example, the second server will be chosen when the application connects to the address https://myserver: portssl/akuiteo/mvc/update/servers.xml because this https server owns the property mobile = true.
For all other exchanges, the application will connect to https://myserver.akuiteo.fr:443/akuiteo.
<serveurs>
<serveur id="ak" name="Akuiteo RE7 (http)" default="false">
<description>Akuiteo (https)</description>
<host>monserveur.akuiteo.fr</host>
<port>20000</port>
<application>akuiteo</application>
</serveur>
<serveur id="akhttps" name="Akuiteo (https)" mobile="true" protocol="https">
<description>Akuiteo</description>
<host>monserveur.akuiteo.fr</host>
<port>443</port>
<application>akuiteo</application>
</serveur>
<serveur id="interne" name="interne.Akuiteo" default="false"> <description>INTERNE
RE7</description> <host>monserveur.akuiteo.lan</host> <port>20001</port>
<application>akuiteo</application>
</serveur>
</serveurs>
In this example, the second server will be chosen when the application connects to the address https://myserver:portssl/akuiteo/MVC/update/serveurs.xml. There is no https server that has the property mobile = true, and the second server is in https and has the default = true property.
For all other exchanges, the application will connect to https://myserver.akuiteo.fr:443/akuiteo.
From the server administration console, go to Configuration> Updates. The server.xml pathname field indicates the location of the servers.xml file.