asp .net 中的 WCF 配置出现问题

发布于 2024-12-07 21:31:54 字数 332 浏览 0 评论 0原文

我的 Visual Web Developer Express 2010 中有一个 5 层应用程序(实体、数据访问、业务、UI 和异常)。我的数据访问层是 WCF 服务,UI 是 asp .net Web 应用程序。我将服务引用添加到业务层,并将应用程序配置文件拖到 UI 层。当我运行该应用程序时,出现以下错误

找不到引用合约的默认端点元素 ServiceModel 客户端配置中的“ExcelService.IExcelReader” 部分。这可能是因为没有找到配置文件 您的应用程序,或者因为没有与此匹配的端点元素 合约可以在 client 元素中找到。

I have a 5 layer application (Entity, Data Access, Business, UI and Exception) in my Visual Web developer express 2010. My Data Access Layer being a WCF Service and UI being asp .net web application. I added service reference to the Business Layer and dragged the app config file to the UI Layer. When I run the app, I get the following error

Could not find default endpoint element that references contract
'ExcelService.IExcelReader' in the ServiceModel client configuration
section. This might be because no configuration file was found for
your application, or because no endpoint element matching this
contract could be found in the client element.

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

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

发布评论

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

评论(1

哀由 2024-12-14 21:31:54

app.config 的内容需要与已存在的 web.config 文件合并。

具体来说,您将在 app.config 文件中找到 部分。将整个部分复制到 web.config 中 - 然后您的 UI 层应该会看到 WCF 配置。

您的 web.config 将如下所示:

<configuration>
  <appSettings>
     <!-- application settings -->
  </appSettings>
  <system.web>
     <!-- configuration for Web application -->
  </system.web>
  <system.serviceModel>
     <!-- configuration for WCF -->
  </system.serviceModel>
</configuration>

The content of the app.config will need to be merged with the web.config file that's already present.

Specifically, you'll find a <system.serviceModel> section in the app.config file. Take this whole section and copy it into web.config - your UI layer should then see the WCF configuration.

Your web.config will then look a little like this:

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