Supporting Multiple TLS Versions

Privilege Manager on-premise does not work with Azure Service Bus if the web server is set to use only TLS 1.2.

Customers that want to restrict connections on their web server to TLS 1.2 need to make modifications to C:\inetpub\wwwroot\Tms\ServiceBus\web.config and C:\inetpub\wwwroot\Tms\Worker\web.config. They also must have .NET Framework 4.6 or newer installed and modify the <system.web> section as follows:

  1. Open C:\inetpub\wwwroot\Tms\ServiceBus\web.config.

  2. Change the <system.web> section to:

    Copy
    <system.web>
     <httpRuntime targetFramework="4.6"/>  <authorization>   <allow users="?"/>  </authorization> <authentication mode="Windows"/></system.web>
  3. Save the file.

  4. Open C:\inetpub\wwwroot\Tms\Worker\web.config.

  5. Change the <system.web> section to:

    Copy
    <system.web>
     <httpRuntime targetFramework="4.6"/>  <authorization>   <allow users="?"/>  </authorization> <authentication mode="Windows"/></system.web>
  6. Save the file.