The configuration section #39;uri#39; cannot be read because it is missing a section declaration(无法读取配置部分“uri,因为它缺少部分声明)
问题描述
我尝试使用 .net 4.5 在 IIS7 上安装 BugNET
I tried to install BugNET on IIS7 with .net 4.5
一直显示
无法读取配置部分uri",因为它缺少部分声明
The configuration section 'uri' cannot be read because it is missing a section declaration
很像这个问题和这个 但是我的应用程序池设置为 4.0.
It is pretty much like this issue and this one But my app pool was set to 4.0.
它在带有 .net 4.5 的 IIS8 上运行良好
And it works fine on IIS8 with .net 4.5
我认为设置是相同的.
有什么帮助吗?谢谢
推荐答案
事实证明它确实意味着它缺少一个部分声明.
It turns out it does mean it is missing a section declaration.
我只是添加
<section name="uri" type="System.Configuration.UriSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<configSections>
然后它就可以正常工作了.
Then it works fine.
这篇关于无法读取配置部分“uri",因为它缺少部分声明的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法读取配置部分“uri",因为它缺少部分声明
基础教程推荐
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- WPF 模态进度窗口 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
