Parser error in configuration file while installing CMS - "Unrecognized attribute 'type' "
Updated: 21 May 2010 | 2 comments
CMS 7.0 installation fails, after I reinstalled the windows.
I have windows 2003 with SP1,
.NET frameworks (2.0 with SP1, 3.0 with SP1 and 3.5 without SP1)
SQL server 2005 Enterprise Edition
I haven't changed configuration file. Here it is:
<?xml version="1.0"?> <configuration> <configSections> <section name="uriSettings" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> <!-- This is for ASP.NET AJAX --> <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"> <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"> <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" /> <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"> <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="Everywhere" /> <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" /> <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" /> </sectionGroup> </sectionGroup> </sectionGroup> </configSections> <appSettings> <add key="UseLocalWebServices" value="1" /> </appSettings> <system.diagnostics> <switches> <add name="AeXTraceSwitch" value="4" /> </switches> <trace autoflush="false" indentsize="4"> <listeners> <add name="Altiris eXpress EventLog" type="Altiris.NS.Logging.EventLogListener, Altiris.NS" initializeData="c:\myListener.log" /> </listeners> </trace> </system.diagnostics> <system.runtime.remoting> <application name="AltirisWeb"> <channels> <channel ref="tcp" port="0"> </channel> </channels> </application> </system.runtime.remoting> <system.web> <!-- Setting the httpRuntime executionTimeout to 10 minutes. This will give each web request 10 minutes to execute before ASP.NET kills it. --> <httpRuntime executionTimeout="600" /> <!-- Turn off request value validation. http://www.microsoft.com/technet/treeview/default.... --> <pages validateRequest="false"> <controls> <add tagPrefix="acu" namespace="Altiris.Common.UI.Controls" assembly="Altiris.Common.UI" /> <add tagPrefix="nsu" namespace="Altiris.NS.UI.Controls" assembly="Altiris.NS.UI" /> <add tagPrefix="nsuview" namespace="Altiris.NS.UI.Controls.ViewControls" assembly="Altiris.NS.UI" /> <add tagPrefix="nsusw" namespace="Altiris.NS.UI.Controls.SelectorWrappers" assembly="Altiris.NS.UI" /> <add tagPrefix="awc" namespace="Altiris.WebControls" assembly="Altiris.WebControls" /> <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> </controls> </pages> <!-- DYNAMIC DEBUG COMPILATION Set compilation debug="true" to enable ASPX debugging. Otherwise, setting this value to false will improve runtime performance of this application. Set compilation debug="true" to insert debugging symbols (.pdb information) into the compiled page. Because this creates a larger file that executes more slowly, you should set this value to true only when debugging and to false at all other times. For more information, refer to the documentation about debugging ASP .NET files. --> <compilation defaultLanguage="c#" debug="false"> <compilers> <compiler language="c#" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" extension=".cs" compilerOptions="/d:DEBUG;TRACE /warnaserror+ /nowarn:0618" /> </compilers> <assemblies> <add assembly="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" /> <add assembly="System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" /> <add assembly="System.Management, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" /> <add assembly="System.Messaging, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" /> <add assembly="System.Runtime.Remoting, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" /> <add assembly="System.Security, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" /> <add assembly="System.ServiceProcess, 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" /> <add assembly="System.Configuration.Install, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" /> <add assembly="System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" /> <add assembly="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" /> <add assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" /> <add assembly="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" /> <add assembly="System.Web.Services, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" /> <add assembly="Microsoft.Web.UI.WebControls, Version=1.0.2.226, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> <add assembly="Infragistics.WebUI.Shared, Version=1.0.6007.10, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB" /> <add assembly="Infragistics.WebUI.UltraWebChart, Version=1.0.6007.78, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB" /> <add assembly="Infragistics.WebUI.UltraWebGrid.v2, Version=2.0.5000.17, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB" /> <add assembly="Infragistics.WebUI.UltraWebNavigator.v2, Version=2.0.5000.112, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB" /> <add assembly="Infragistics.WebUI.UltraWebToolbar.v2, Version=2.0.5000.0, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB" /> <add assembly="Infragistics.UltraChart.Core, Version=1.0.4001.78, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB" /> <add assembly="Infragistics.UltraChart.Data, Version=1.0.4001.78, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB" /> <add assembly="Infragistics.UltraChart.Render.ActiveImage, Version=1.0.4001.78, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB" /> <add assembly="Infragistics.UltraChart.Render, Version=1.0.4001.78, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB" /> <add assembly="Infragistics.UltraChart.Resources, Version=1.0.4001.78, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB" /> <add assembly="SMTP.Net, Version=2.0.0.1, Culture=neutral, PublicKeyToken=986A9AA31056680B" /> <add assembly="Altiris.NS.UI.ControlsEx, Version=6.0.21.0, Culture=neutral, PublicKeyToken=D516CB311CFB6E4F" /> <add assembly="Altiris.Interop, Version=7.0.3876.0, Culture=neutral, PublicKeyToken=D516CB311CFB6E4F" /> <add assembly="Altiris.Common, Version=7.0.3876.0, Culture=neutral, PublicKeyToken=D516CB311CFB6E4F" /> <add assembly="Altiris.Common.UI, Version=7.0.3876.0, Culture=neutral, PublicKeyToken=D516CB311CFB6E4F" /> <add assembly="Altiris.NS, Version=7.0.3876.0, Culture=neutral, PublicKeyToken=D516CB311CFB6E4F" /> <add assembly="Altiris.Resource, Version=7.0.3876.0, Culture=neutral, PublicKeyToken=D516CB311CFB6E4F" /> <add assembly="Altiris.NS.StandardItems, Version=7.0.3876.0, Culture=neutral, PublicKeyToken=D516CB311CFB6E4F" /> <add assembly="Altiris.NS.UI, Version=7.0.3876.0, Culture=neutral, PublicKeyToken=D516CB311CFB6E4F" /> <add assembly="Altiris.Resource.UI, Version=7.0.3876.0, Culture=neutral, PublicKeyToken=D516CB311CFB6E4F" /> <add assembly="Altiris.NS.Replication, Version=7.0.3876.0, Culture=neutral, PublicKeyToken=D516CB311CFB6E4F" /> <add assembly="Altiris.NS.Replication.Hierarchy, Version=7.0.3876.0, Culture=neutral, PublicKeyToken=D516CB311CFB6E4F" /> <add assembly="Altiris.Profiling, Version=7.0.1175.0, Culture=neutral, PublicKeyToken=D516CB311CFB6E4F" /> <add assembly="Altiris.Database, Version=7.0.3876.0, Culture=neutral, PublicKeyToken=D516CB311CFB6E4F" /> <add assembly="Altiris.GroupCommunications, Version=7.0.3876.0, Culture=neutral, PublicKeyToken=D516CB311CFB6E4F" /> <add assembly="ComponentArt.Web.UI, Version=2007.2.1302.0, Culture=neutral, PublicKeyToken=7166f3805b99f388" /> <add assembly="Altiris.WebControls, Version=2.0.566.0, Culture=neutral, PublicKeyToken=A98F6369EDEF8F57" /> <add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> <add assembly="System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" /> <add assembly="System.DirectoryServices.Protocols, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" /> <add assembly="System.EnterpriseServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" /> <add assembly="System.Web.RegularExpressions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" /> </assemblies> </compilation> <!-- CUSTOM ERROR MESSAGES Set customError mode values to control the display of user-friendly error messages to users instead of error details (including a stack trace): "On" Always display custom (friendly) messages "Off" Always display detailed ASP.NET error information. "RemoteOnly" Display custom (friendly) messages only to users not running on the local Web server. This setting is recommended for security purposes, so that you do not display application detail information to remote clients. Note: This is automatically changed to On when a kit is built for release. --> <customErrors mode="Off" defaultRedirect="..\console\error.htm"> <error statusCode="404" redirect="HttpError.aspx?Error=404" /> </customErrors> <!-- AUTHENTICATION This section sets the authentication policies of the application. Possible modes are "Windows", "Forms", "Passport" and "None" --> <authentication mode="Windows" /> <identity impersonate="false" /> <authorization> <deny users="?" /> </authorization> <!-- APPLICATION-LEVEL TRACE LOGGING Application-level tracing enables trace log output for every page within an application. Set trace enabled="true" to enable application trace logging. If pageOutput="true", the trace information will be displayed at the bottom of each page. Otherwise, you can view the application trace log by browsing the "trace.axd" page from your web application root. --> <trace enabled="false" requestLimit="10" pageOutput="false" traceMode="SortByTime" localOnly="true" /> <!-- SESSION STATE SETTINGS By default ASP .NET uses cookies to identify which requests belong to a particular session. If cookies are not available, a session can be tracked by adding a session identifier to the URL. To disable cookies, set sessionState cookieless="true". --> <sessionState mode="InProc" stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data source=127.0.0.1;user id=sa;password=" cookieless="false" timeout="20" /> <!-- GLOBALIZATION This section sets the globalization settings of the application. --> <globalization requestEncoding="utf-8" responseEncoding="utf-8" /> <httpHandlers> <add path="awc.axd" verb="GET" type="Altiris.WebControls.ResourceDealer, Altiris.WebControls" validate="false" /> <add verb="*" path="VirtualWindow.axd" validate="false" type="Altiris.NS.UI.VirtualControlHandler, Altiris.NS.UI, Version=7.0.0.0, Culture=neutral, PublicKeyToken=D516CB311CFB6E4F" /> <!-- This is for ASP.NET AJAX --> <remove verb="*" path="*.asmx" /> <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false" /> </httpHandlers> <httpModules> <!-- This is for ASP.NET AJAX --> <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> </httpModules> </system.web> <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <qualifyAssembly partialName="Altiris.Common" fullName="Altiris.Common,version=7.0.0.0,publicKeyToken=d516cb311cfb6e4f,culture=neutral" /> <qualifyAssembly partialName="Altiris.Common.UI" fullName="Altiris.Common.UI,version=7.0.0.0,publicKeyToken=d516cb311cfb6e4f,culture=neutral" /> <qualifyAssembly partialName="Altiris.NS" fullName="Altiris.NS,version=7.0.0.0,publicKeyToken=d516cb311cfb6e4f,culture=neutral" /> <qualifyAssembly partialName="Altiris.NS.StandardItems" fullName="Altiris.NS.StandardItems,version=7.0.0.0,publicKeyToken=d516cb311cfb6e4f,culture=neutral" /> <qualifyAssembly partialName="Altiris.NS.Replication" fullName="Altiris.NS.Replication,version=7.0.0.0,publicKeyToken=d516cb311cfb6e4f,culture=neutral" /> <qualifyAssembly partialName="Altiris.NS.Replication.Hierarchy" fullName="Altiris.NS.Replication.Hierarchy,version=7.0.0.0,publicKeyToken=d516cb311cfb6e4f,culture=neutral" /> <qualifyAssembly partialName="Altiris.NS.UI" fullName="Altiris.NS.UI,version=7.0.0.0,publicKeyToken=d516cb311cfb6e4f,culture=neutral" /> <qualifyAssembly partialName="Infragistics.WebUI.Shared" fullName="Infragistics.WebUI.Shared,version=1.0.6007.10,publicKeyToken=7dd5c3163f2cd0cb,culture=neutral" /> <qualifyAssembly partialName="Infragistics.WebUI.UltraWebNavigator.v2" fullName="Infragistics.WebUI.UltraWebNavigator.v2,version=2.0.5000.112,publicKeyToken=7dd5c3163f2cd0cb,culture=neutral" /> <qualifyAssembly partialName="Infragistics.WebUI.UltraWebToolbar.v2" fullName="Infragistics.WebUI.Infragistics.WebUI.UltraWebToolbar.v2,version=2.0.5000.0,publicKeyToken=7dd5c3163f2cd0cb,culture=neutral" /> <qualifyAssembly partialName="Infragistics.WebUI.UltraWebChart" fullName="Infragistics.WebUI.UltraWebChart,version=1.0.6007.78,publicKeyToken=7dd5c3163f2cd0cb,culture=neutral" /> <qualifyAssembly partialName="Altiris.NS.UI.ControlsEx" fullName="Altiris.NS.UI.ControlsEx,version=6.0.21.0,publicKeyToken=d516cb311cfb6e4f,culture=neutral" /> <qualifyAssembly partialName="Microsoft.Web.UI.WebControls" fullName="Microsoft.Web.UI.WebControls,version=1.0.2.226,publicKeyToken=31bf3856ad364e35,culture=neutral" /> <qualifyAssembly partialName="Altiris.Resource" fullName="Altiris.Resource,version=7.0.0.0,publicKeyToken=d516cb311cfb6e4f,culture=neutral" /> <qualifyAssembly partialName="Altiris.Resource.UI" fullName="Altiris.Resource.UI,version=7.0.0.0,publicKeyToken=d516cb311cfb6e4f,culture=neutral" /> <qualifyAssembly partialName="Altiris.WebControls" fullName="Altiris.WebControls, Version=2.0.0.0, Culture=neutral, PublicKeyToken=a98f6369edef8f57" /> <qualifyAssembly partialName="Altiris.Connector.Common" fullName="Altiris.Connector.Common,version=7.0.0.0,publicKeyToken=d516cb311cfb6e4f,culture=neutral" /> <qualifyAssembly partialName="Altiris.NS.EditableItemAction" fullName="Altiris.NS.EditableItemAction,version=7.0.0.0,publicKeyToken=d516cb311cfb6e4f,culture=neutral" /> </assemblyBinding> </runtime> <system.web.extensions> <scripting> <webServices> <!-- Uncomment this line to customize maxJsonLength and add a custom converter --> <!-- <jsonSerialization maxJsonLength="500"> <converters> <add name="ConvertMe" type="Acme.SubAcme.ConvertMeTypeConverter"/> </converters> </jsonSerialization> --> <!-- Uncomment this line to enable the authentication service. Include requireSSL="true" if appropriate. --> <!-- <authenticationService enabled="true" requireSSL = "true|false"/> --> <!-- Uncomment these lines to enable the profile service. To allow profile properties to be retrieved and modified in ASP.NET AJAX applications, you need to add each property name to the readAccessProperties and writeAccessProperties attributes. --> <!-- <profileService enabled="true" readAccessProperties="propertyname1,propertyname2" writeAccessProperties="propertyname1,propertyname2" /> --> </webServices> <!-- <scriptResourceHandler enableCompression="true" enableCaching="true" /> --> </scripting> </system.web.extensions> <system.webServer> <validation validateIntegratedModeConfiguration="false" /> <modules> <add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> </modules> <handlers> <remove name="WebServiceHandlerFactory-Integrated" /> <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> </handlers> </system.webServer> </configuration>
Here is the error message from Altiris Log Viewer:
Log File Name: C:\Program Files\Altiris\Notification Server\Logs\SIM 2009-07-20 05-15-55\a.log
Priority: 1
Date: 7/20/2009 5:35:46 AM
Tick Count: 1319250
Host Name: ALTIRIS-CMS
Process: SymantecInstallationManager (3832)
Thread ID: 69
Module: SymantecInstallationManager.exe
Source: Symantec.Installation.PerformInstall.InstallProducts
Description: Unable to stop services.
( Exception Details: System.InvalidOperationException: Client found response content type of 'text/html; charset=utf-8', but expected 'text/xml'.
The request failed with the error message:
--
<html>
<head>
<title>Configuration Error</title>
<style>
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
pre {font-family:"Lucida Console";font-size: .9em}
.marker {font-weight: bold; color: black;text-decoration: none;}
.version {color: gray;}
.error {margin-bottom: 10px;}
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
</style>
</head>
<body bgcolor="white">
<span><H1>Server Error in '/Altiris/NS' Application.<hr width=100% size=1 color=silver></H1>
<h2> <i>Configuration Error</i> </h2></span>
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
<b> Description: </b>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.
<br><br>
<b> Parser Error Message: </b>Unrecognized attribute 'type'.<br><br>
<b>Source Error:</b> <br><br>
<table width=100% bgcolor="#ffffcc">
<tr>
<td>
<code><pre>
Line 4: <section name="uriSettings" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
Line 5: <!-- This is for ASP.NET AJAX -->
<font color=red>Line 6: <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
</font>Line 7: <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
Line 8: <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" /></pre></code>
</td>
</tr>
</table>
<br>
<b> Source File: </b> C:\Program Files\Altiris\Notification Server\web.config<b> Line: </b> 6
<br><br>
<hr width=100% size=1 color=silver>
<b>Version Information:</b> Microsoft .NET Framework Version:1.1.4322.2300; ASP.NET Version:1.1.4322.2300
</font>
</body>
</html>
<!--
[ConfigurationException]: Unrecognized attribute 'type'. (C:\Program Files\Altiris\Notification Server\web.config line 6)
at System.Web.Configuration.HttpConfigurationSystem.CacheLookup(String vpath)
at System.Web.Configuration.HttpConfigurationSystem.ComposeConfig(String reqPath, IHttpMapPath configmap)
at System.Web.HttpContext.GetAppConfig(String name)
at System.Web.HttpContext.GetAppLKGConfig(String name)
-->
--.
at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
at Altiris.NS.Installation.ServiceConfigurationWebServiceProxy.GetRegisteredServices()
at Symantec.Installation.PerformInstall.InstallProducts(Components componentsToInstall) )
( Exception logged from:
at Altiris.Diagnostics.Logging.EventLog.ReportException(Int32 severity, String strMessage, String category, Exception exception)
at Altiris.Diagnostics.Logging.EventLog.ReportException(String strMessage, Exception exception)
at Symantec.Installation.PerformInstall.InstallProducts(Components componentsToInstall)
at Symantec.Installation.Context.WizardProcess.InstallManager.PerformInstall()
at Symantec.Installation.InstallTask.ExecuteTask()
at Symantec.Installation.InstallSessionQueue.ExecuteNextTask()
at Symantec.Installation.InstallSessionQueue.ExecuteNextTask()
at Symantec.Installation.Context.WizardProcess.InstallManager.PerformInstallAndConfig()
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()
)
( Extra Details: Type=System.InvalidOperationException Src=System.Web.Services )
discussion Filed Under:
Comments
Ok, I think I fixed this
Ok, I think I fixed this one.
By default IIS used ASP.NET 1 for the Default WEB Page, you must change it to ASP .NET 2.
/IIS Manager/Web Sites/Default Web Site. Click on "Properties" and under "ASP .NET" tab choose version 2.
That is a good catch
The pre-req checker in the SIM should have caught that, at least as a warning.
Jim Harings
HP Enterprise Services
1st Rule of Connect Club: Mark the post that helped you the most as a 'solution'. 2nd Rule of Connect Club:You must talk about Connect club.
Would you like to reply?
Login or Register to post your comment.