asp .net 中的 WCF 配置出现问题
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
app.config
的内容需要与已存在的web.config
文件合并。具体来说,您将在
app.config
文件中找到
部分。将整个部分复制到web.config
中 - 然后您的 UI 层应该会看到 WCF 配置。您的
web.config
将如下所示:The content of the
app.config
will need to be merged with theweb.config
file that's already present.Specifically, you'll find a
<system.serviceModel>
section in theapp.config
file. Take this whole section and copy it intoweb.config
- your UI layer should then see the WCF configuration.Your
web.config
will then look a little like this: