.Net upgrade causes stopping og MOSS 2007 Sites
We applied the patches released by MS for .Net 3.5, 3.0 and 2.0 which are released in last week of June.
After applying it and restarting server MOSS Administrations sites and application sites were not opening. I reconfigured the Administration site. After that It started working, but my Application sites are still giving below error-
---
Configuration Error
Description:
An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
Parser Error Message: Unrecognized attribute 'type'.
Source Error:
Line 14: <section name="BlobCache" type="System.Configuration.SingleTagSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
Line 15: </sectionGroup>
Line 16: <sectionGroup name="System.Workflow.ComponentModel.WorkflowCompiler" type="System.Workflow.ComponentModel.Compiler.WorkflowCompilerConfigurationSectionGroup, System.Workflow.ComponentModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
Line 17: <section name="authorizedTypes" type="System.Workflow.ComponentModel.Compiler.AuthorizedTypesSectionHandler, System.Workflow.ComponentModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
Line 18: </sectionGroup>
Source File: C:\Inetpub\wwwroot\wss\VirtualDirectories\3333\web.config Line:
16
Version Information: Microsoft .NET Framework Version:1.1.4322.2443; ASP.NET Version:1.1.4322.2460
--------
Can anyone help???
July 6th, 2010 8:32pm
Hi,
Looks like your running ASP.NET 1.1 and needs to be changed to 2..
The ASP.NET IIS Registration tool (Aspnet_regiis.exe) allows an administrator or installation program to easily update the script maps for an ASP.NET application to point to the ASP.NET ISAPI version associated with the tool, when multiple versions of the
.NET Framework are executing side-by-side on a single computer.
You can also use the ASP.NET IIS Registration tool to view information about ASP.NET. To list the status and installation path of all of the versions of ASP.NET that are installed on your computer,
use the -lv option. If you want to see the paths to all of the IIS metabase keys where ASP.NET is mapped, use the -lk option.
If SharePoint is the only application installed on the Server and you do not need ASP.NET 1.1. The following command installs the and updates the script maps of all
existing ASP.NET applications. Note that only applications that are currently mapped to an earlier version of ASP.NET are affected.
%Windows%\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe –i
The following command installs the script maps of the application and all subdirectories:
%Windows%\Microsoft.NET\Framework\v2.0.50727\Aspnet_regiis -s
W3SVC/<YourWebSiteID>/ROOT
I would prefer to run aspnet.regiis.exe -i as this will set all applications to use ASP.NET 2. Hoqwever, it depends on if you are running applications that require ASP.NET 1.1. As always please ensure you have a backup of the environment
-IvanIvan Sanders My LinkedIn Profile,
My Blog,
@iasanders.
Free Windows Admin Tool Kit Click here and download it now
July 7th, 2010 12:34am


