Hai ragione!!!
Il problema non è la cam ma il redirect DDNS.
Forniscono la SSL ma a pagamento. Qui nessuno paga!!

Sembra che ho trovato la strada giusta in web.config

codice:
  <rewrite>
   <rules>
    <clear />
    <rule name="Redirect to https" stopProcessing="true">
     <match url="(.*)" />
     <conditions>
      <add input="{HTTPS}" pattern="off" ignoreCase="true" />
      <add input="{URL}" pattern="^/MyCam" negate="true" />
     </conditions>
     <action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" appendQueryString="false" />
    </rule>
    <rule name="Redirect to http" stopProcessing="true">
     <match url="(.*)" />
     <conditions>
      <add input="{HTTP}" pattern="^/MyCam" ignoreCase="true" />
     </conditions>
     <action type="Redirect" url="http://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" appendQueryString="false" />
    </rule>            
   </rules>
  </rewrite>
Sembra che funziona