Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: First published version

Enterprise Tester and Okta

Enterprise Tester is a SAML 2.0 enabled application within OKTA.

Okta is an enterprise-grade, identity management service, built for the cloud, but compatible with many on-premises applications. With Okta, IT can manage any employee's access to any application or device. Okta runs in the cloud, on a secure, reliable, extensively audited platform, which integrates deeply with on-premises applications, directories, and identity management systems.

https://www.okta.com/

 

Configuring Okta

1) In Okta, create Enterprise Tester integration using SAML 2.0.

...

Record IDP information in "View Setup Instructions"


 

 

 

Configuring Enterprise Tester to use Okta

Add the following keys to the appSettings section in the Enterprise Tester web.config file.

...

<add key="SAML.Certificate"value="<X.509 Certificate>"/>

 

 



CLR Security Update

  1. Download CLR security update
    http://clrsecurity.codeplex.com/releases/view/47764

  2. Extract Security.Cryptography.dll assembly
  3. Add Security.Cryptography.dll to GAC

     

    gacutil.exe /i Security.Cryptography.dll
  4. View Security.Cryptography.dll assembly

     

    gacutil.exe /l Security.Cryptography
  5. Update machine.config in C:\Windows\Microsoft.NET\Framework\v4.0.30319\Config and C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config. Insert the following code block after <system.web> section in <configuration>

     

    <mscorlib>
      <cryptographySettings>
        <cryptoNameMapping>
          <cryptoClasses>
            <cryptoClass RSASHA256SignatureDescription="Security.Cryptography.RSAPKCS1SHA256SignatureDescription, Security.Cryptography, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
          </cryptoClasses>
          <nameEntry name="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256"class="RSASHA256SignatureDescription"/>
        </cryptoNameMapping>
      </cryptographySettings>
    </mscorlib>

 

...