Error- HTTP Error 500.19 on Win Server 2008
-
Hi I have the following error while browsing the .net application on winserver 2008 Server ErrorInternet Information Services 7.0 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 InformationModule IIS Web Core Notification BeginRequest Handler Not yet determined Error Code 0x80070032 Config Error The configuration section 'mailSettings' cannot be read because it is missing a section declaration Config File \\?\B:\Website\PayKey\logpage\web.config Requested URL http://localhost:80/paykey Physical Path B:\Website\PayKey\logpage Logon Method Not yet determined Logon User Not yet determined Config Source 24: 25: 26: Links and More InformationThis 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 »
Amit Battan Ror battan20@gmail.com
-
Hi I have the following error while browsing the .net application on winserver 2008 Server ErrorInternet Information Services 7.0 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 InformationModule IIS Web Core Notification BeginRequest Handler Not yet determined Error Code 0x80070032 Config Error The configuration section 'mailSettings' cannot be read because it is missing a section declaration Config File \\?\B:\Website\PayKey\logpage\web.config Requested URL http://localhost:80/paykey Physical Path B:\Website\PayKey\logpage Logon Method Not yet determined Logon User Not yet determined Config Source 24: 25: 26: Links and More InformationThis 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 »
Amit Battan Ror battan20@gmail.com
You've created a section named <mailSettings> in your web.config, but you haven't told .NET how to handle that section. You need to add an entry to the <configSections> element telling it which handler to use. See configSections element[^].
"Multithreading is just one damn thing after, before, or simultaneous with another." - Andrei Alexandrescu
-
You've created a section named <mailSettings> in your web.config, but you haven't told .NET how to handle that section. You need to add an entry to the <configSections> element telling it which handler to use. See configSections element[^].
"Multithreading is just one damn thing after, before, or simultaneous with another." - Andrei Alexandrescu
When I Delete That section then Error comes on next line after this
Amit Battan Ror battan20@gmail.com