It is possible to insert a link to a second xml config file that is automatically loaded after the first config file.
The handset software must be version 10 or higher.
InformationExample
<?xml version="1.0" encoding="UTF-8"?>
<provisioning version="1.0" productID="Gsdecthx">
<nvm>
<param name="external_calls_ringer_volume" value="10" />
</nvm>
<nested_file value="http://192.168.1.10/dashboard/test.xml"/>
</provisioning>
Remarks:
- %IPUI is supported (Will be replaced by the device with own IPUI
- If the nested_file URL is the same like the current XML file, it will not be downloaded.
InformationExample with %IPUI
<?xml version="1.0" encoding="UTF-8"?>
<provisioning version="1.0" productID="Gsdecthx">
<nvm>
<param name="external_calls_ringer_volume" value="10" />
</nvm>
<nested_file value="http://192.168.1.10/dashboard/%IPUI.xml"/>
<!-- example, device with IPUI 03701d0e3d will download the file: http://192.168.1.10/dashboard/03701d0e3d.xml -->
</provisioning>