web.config WCF 文件中的 appsettings 节点在尝试调试时出现错误

发布于 2024-09-19 15:17:18 字数 351 浏览 2 评论 0原文

我有一个 WCF 项目, 当我将以下代码添加到配置文件(Web.config)时:

<configuration> <appsettings> <add key="Hello" value="5"/> </appsettings>....

尝试调试时出现此错误:

“无法在 Web 服务器上启动调试。Web 服务器配置不正确。请参阅常见配置错误的帮助。正在运行调试器外部的网页可能会提供更多信息。”

当我删除应用程序设置时,WCFTestClient 将打开。

如果不是这样,我该如何在 web.config 中定义常量?

i have a WCf project,
when i add the following code to the configuration file (Web.config):

<configuration> <appsettings> <add key="Hello" value="5"/> </appsettings>....

i get this erro whentrying to debug:

"Unable to start debugging on the web server. The web server is not configured correctly. See help for common configuration errors. Running the web page outside of the debugger may provide further information."

when i drop the appsettings, the WCFTestClient opens.

how do i define constants in the web.config if not in that way ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小ぇ时光︴ 2024-09-26 15:17:18

通过将 AppSettings 节点作为该部分的最后一个节点解决了这个问题,并且它有效!

<appSettings><add key="hello" value="Monday" /></appSettings></configuration>

有趣的......

Solved this problem by putting the AppSettings node as the last node in the section and it works!

<appSettings><add key="hello" value="Monday" /></appSettings></configuration>

funny......

云之铃。 2024-09-26 15:17:18

我认为是案例问题。应用程序设置部分定义为

..

我希望您已在 web.config 中定义服务设置

<system.serviceModel>
 <services>..</services>
 <bindings>..</bindings>
 <behaviors>...</behaviors>
</system.serviceModel>

I think it the case problem. the Application settings section is defined as

<appSettings>..</appSettings>

I hope you have define the service settings in your web.config

<system.serviceModel>
 <services>..</services>
 <bindings>..</bindings>
 <behaviors>...</behaviors>
</system.serviceModel>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文