The following provides a sample EMM configuration template:
<?xml version="1.0" encoding="utf-8"?>  <restriction    android:key="preconfig_enable"    android:title="Preconfig enable"    android:restrictionType="bool"    android:defaultValue="true" />    <!-- Hostname or IP address of the EBX® Server for this connection. It is mandatory that the TIBCO EBX® GO module is activated on the server to enable the connection -->  <restriction    android:key="server_address"    android:title="Server Address"      android:restrictionType="string"    android:defaultValue="" />    <!-- Port number used by the EBX® Server - mandatory -->  <restriction    android:key="server_port"    android:title="Server Port"    android:restrictionType="string"    android:defaultValue="" />    <!-- If required when using a reverse proxy server, enter a custom URL path. For example, "customPath" with "http://ebxserver/customPath"- optional -->  <restriction    android:key="server_path"    android:title="Server Path"     android:restrictionType="string"    android:defaultValue="" />  <restriction    android:key="https_protocol"    android:title="HTTP Server Protocol"    android:restrictionType="bool"    android:defaultValue="false" /></restrictions> |