FIPS validated cryptographic algorithm ASP.Net 2.0 Parsing Error

  • Thread starter Thread starter George
  • Start date Start date
G

George

All

I am receving the following error message when I attempt to run
my ASP.Net 2.0 Site on a server built to pass the DISA Gold scan.
--------------------------------------------------------------------------------------------------------
Parser Error Message: This implementation is not part of the Windows
Platform FIPS validated cryptographic algorithms
-------------------------------------------------------------------------------------------------------

The source error shows the following line of code as being in error:

Line 1: <%@ master language="VB" inherits="GATSSimpleMaster,
App_Web_0ny_5agg" %>

SO --- I search the web and found knowledge base article 91172 that
talked about a similar problem and tried its fix of adding a
machinekey entry to system.web section of the application web.config
file.
http://support.microsoft.com/kb/911722

The exact same error message was generated even with after the line
was added to the web.config file. (Please see the web.config file
below)

Any assistance would be greatly appreciate.

---------------------------------- Web.Config File
-------------------------------------------
<?xml version="1.0"?>
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/
v2.0">
<appSettings>
</appSettings>
<connectionStrings>
</connectionStrings>
<system.web>
<compilation debug="true" strict="true" explicit="true">
<assemblies>
<add assembly="Infragistics2.WebUI.Shared.v7.2,
Version=7.2.20072.61, Culture=neutral,
PublicKeyToken=7DD5C3163F2CD0CB"/>
<add assembly="Infragistics2.WebUI.UltraWebListbar.v7.2,
Version=7.2.20072.61, Culture=neutral,
PublicKeyToken=7DD5C3163F2CD0CB"/>
<add assembly="System.Management, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
<add assembly="System.Data.OracleClient, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Transactions, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Configuration.Install, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
<add assembly="System.Windows.Forms, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Design, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=B03F5F7F11D50A3A"/></assemblies>
</compilation>
<pages>
<namespaces>
<clear/>
<add namespace="System"/>
<add namespace="System.Collections"/>
<add namespace="System.Collections.Specialized"/>
<add namespace="System.Configuration"/>
<add namespace="System.Text"/>
<add namespace="System.Text.RegularExpressions"/>
<add namespace="System.Web"/>
<add namespace="System.Web.Caching"/>
<add namespace="System.Web.SessionState"/>
<add namespace="System.Web.Security"/>
<add namespace="System.Web.Profile"/>
<add namespace="System.Web.UI"/>
<add namespace="System.Web.UI.WebControls"/>
<add namespace="System.Web.UI.WebControls.WebParts"/>
<add namespace="System.Web.UI.HtmlControls"/>
</namespaces>
</pages>
<customErrors mode="Off"/>
<profile>
<properties>
<add name="SiteMinderUserID" type="string"/>
<add name="FirstName" type="string"/>
<add name="EmailAddress" type="string"/>
<add name="UserDefinedProductGroups" type="System.Data.Dataset"/>
<add name="UserDefinedPartnerGroups" type="System.Data.Dataset"/>
<add name="UserPreferences" type="string"/>
</properties>
</profile>
<machineKey validationKey="AutoGenerate,IsolateApps"
decryptionKey="AutoGenerate,IsolateApps" validation="3DES"
decryption="3DES"/>
</system.web>
</configuration>
 
Back
Top