<< Click to Display Table of Contents >> Navigation: Help > Troubleshooting > FAQ > Firmware update with HTTPS |
Description of the problem:
For the firmware update, the device accesses the path "... / RMS / Setup / FirmwareDownload.ashx" to download the firmware file. However, if a redirect to HTTPS is set up this will not work because the device does not support HTTPS (not technically possible)
Solution:
The following path must be excluded from the HTTPS redirect: "/RMS/Setup/FirmwareDownload.ashx"
Maybe it is an option the whole "/Setup" exclude directory from the redirect. Then this would be the necessary entry in web.config:
<system.webServer>
<rewrite>
<rules>
<rule name="Force HTTPS" enabled="true" stopProcessing="true">
<match url="(.*)" ignoreCase="true"/>
<conditions logicalGrouping="MatchAll">
<add input="{HTTPS}" pattern="off" />
<add input="{REQUEST_URI}" pattern="/Setup/" negate="true" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}{UNENCODED_URL}" appendQueryString="false" />
</rule>
</rules>
</rewrite>
</system.webServer>