To configure indyco with SSO autentication: 

  • Enable the windows authentication in the IIS container;

 



  • Add the authentication and authorization elements to the web.config as shown below:

           

<configuration>
  <system.web>

    <!-- Enable SSO with NTLM/Windows autentication -->
    <authentication mode="Windows" />

    <authorization>
      <allow users="*" verbs="OPTIONS" />
      <deny  users="?" verbs="GET, POST, PUT, DELETE" />
    </authorization>
    <!-- -->

  </system.web>
</configuration>