Links and More Information This error occurs when there is a problem reading the configuration file for the Web server or Web application. In some cases, the event logs may contain more information about what caused this error.
View more information »
Links and More Information This error occurs when there is a problem reading the configuration file for the Web server or Web application. In some cases, the event logs may contain more information about what caused this error.
View more information »
you have to check iis configuration this is the issue when you don't confgiure your iis properly. please go to controlpanel and check in the windows component that you have configure all required component/features related to .net like asp.net is checked
or unchecked.
Sumit Jain
Remember to click Mark as Answer on the post that helps to others.
wmec
Contributor
6195 Points
3214 Posts
Internet Information Services 7.5
Oct 29, 2012 03:19 AM|LINK
Hi,
I am getting this error below when firstly running one starting project. Any advice?
Server Error
Internet Information Services 7.5
Error Summary
HTTP Error 500.19 - Internal Server Error
The requested page cannot be accessed because the related configuration data for the page is invalid.
Detailed Error Information
Module
IIS Web Core
Notification
Unknown
Handler
Not yet determined
Error Code
0x800700b7
Config Error
There is a duplicate 'system.web.extensions/scripting/scriptResourceHandler' section defined
Config File
\\?\C:\inetpub\wwwroot\web.config
Requested URL
https://win-bvdic8giahi:443/Login
Physical Path
Logon Method
Not yet determined
Logon User
Not yet determined
Config Source 5: <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
6: <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
7: <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
Links and More Information This error occurs when there is a problem reading the configuration file for the Web server or Web application. In some cases, the event logs may contain more information about what caused this error.
View more information »
HuaMin Chen
oned_gk
All-Star
31003 Points
6345 Posts
Re: Internet Information Services 7.5
Oct 29, 2012 03:46 AM|LINK
try remove this line
i think you already have it.
Are you sure have set the app pool with appropriate net version.
wmec
Contributor
6195 Points
3214 Posts
Re: Internet Information Services 7.5
Oct 29, 2012 04:06 AM|LINK
Do you think I have to remove anything regarding Version=3.5.0.0? Or do you want to see the web.config file of the current project?
HuaMin Chen
oned_gk
All-Star
31003 Points
6345 Posts
Re: Internet Information Services 7.5
Oct 29, 2012 04:18 AM|LINK
I just read :
There is a duplicate 'system.web.extensions/scripting/scriptResourceHandler' section defined
If you remove the line you still have it.
wmec
Contributor
6195 Points
3214 Posts
Re: Internet Information Services 7.5
Oct 29, 2012 04:25 AM|LINK
How to adjust web.config for this issue?
HuaMin Chen
geniusvishal
Star
13984 Points
2783 Posts
Re: Internet Information Services 7.5
Oct 29, 2012 07:14 AM|LINK
Ask This Question in this forum:
http://forums.iis.net/1052.aspx
Thx.
My Website
www.dotnetvishal.com
oned_gk
All-Star
31003 Points
6345 Posts
Re: Internet Information Services 7.5
Oct 29, 2012 07:24 AM|LINK
Try add <CLEAR/> at first line
<clear/>
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup,
System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="scriptResourceHandler"
type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions,
Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false"
allowDefinition="MachineToApplication" />
<sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup,
System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
wmec
Contributor
6195 Points
3214 Posts
Re: Internet Information Services 7.5
Oct 29, 2012 08:24 AM|LINK
Oned,
I've got this
Server Error
Internet Information Services 7.5
Error Summary
HTTP Error 500.19 - Internal Server Error
The requested page cannot be accessed because the related configuration data for the page is invalid.
Detailed Error Information
Module
IIS Web Core
Notification
Unknown
Handler
Not yet determined
Error Code
0x800700b7
Config Error
There is a duplicate 'system.web.extensions/scripting/scriptResourceHandler' section defined
Config File
\\?\C:\inetpub\wwwroot\web.config
Requested URL
https://win-bvdic8giahi:443/Login
Physical Path
Logon Method
Not yet determined
Logon User
Not yet determined
Config Source 5: <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
6: <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
7: <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
Links and More Information This error occurs when there is a problem reading the configuration file for the Web server or Web application. In some cases, the event logs may contain more information about what caused this error.
View more information »
with this
<?xml version="1.0"?>
<clear/>
in the beginning of web.config
HuaMin Chen
oned_gk
All-Star
31003 Points
6345 Posts
Re: Internet Information Services 7.5
Oct 29, 2012 08:49 AM|LINK
The problem because the web.config conflict with mechine config.
http://www.codeproject.com/Articles/255278/IIS-deployment-error-There-is-a-duplicate-scriptRe
Sorry for the <CLEAR/>, i have ever get similar problem but not same.
sumitjain231
Participant
1402 Points
272 Posts
Re: Internet Information Services 7.5
Oct 29, 2012 09:09 AM|LINK
you have to check iis configuration this is the issue when you don't confgiure your iis properly. please go to controlpanel and check in the windows component that you have configure all required component/features related to .net like asp.net is checked or unchecked.
Remember to click Mark as Answer on the post that helps to others.