我有自己的WCF服務庫配置(App.config中)和web應用配置(Web.config文件)問題
的app.config
服務客戶端庫項目。
該項目在我的Web應用程序中引用。問題是我的web應用程序拋出以下異常
Could not find endpoint element with name 'HttpEndPoint' and contract 'ServiceLibReference1.IDalService' 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 name could be found in the client element.
服務沒有問題。如果我直接在Web應用程序中引用我的服務,它會在客戶端配置被添加到web.config中時正常工作。但我的要求是將其保存在單獨的圖書館項目中。
該例外的原因是服務配置不會添加到web.config。我應該總是手動添加它們嗎?不應該VS添加相應的配置到web.config每當一個服務庫被引用?或者我錯過了什麼?
感謝