如何在另一个项目中包含Web引用端点配置

时间:2011-05-30 09:03:54

标签: c# app-config

我有两个项目,X和Y.Y调用Web服务,配置在Y的app.config(它的DLL)中定义。

当X调用Y方法时,我得到以下异常:

 System.InvalidOperationException: Could not find default endpoint element that references contract 'xxxx.ServiceSoap' 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.

如何在Y的web.config中包含/导入Y的app.config,以便进行此配置?

谢谢!

1 个答案:

答案 0 :(得分:1)

您不能将一个项目的配置文件包含在另一个项目中。

您可以做的是在X项目中创建一个新的配置文件(只包含该Web服务的配置),然后将该配置文件包含在X的主Web.config中。

例如

假设您创建了一个名为“Endponts.config”的新配置文件

看起来像

<endpoints>
......
</endpoints>

然后您可以按以下方式在主web.config文件中使用此Endpoints.config文件

<system.web>
    ...
    <endpoints configSource="Endponts.config" />
    ...
  </system.web>