我有 2 个项目,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 的 app.config 包含/导入到 X 的 web.config 中,以便它具有此配置?
谢谢!
您不能将一个项目的配置文件包含到另一个项目中。
你可以做的是在 X 项目中创建一个新的配置文件(只有该 Web 服务的配置),然后将该配置文件包含到 X 的主 web.config 中。
例如。
假设您创建了一个名为“Endponts.config”的新配置文件
看起来像
<endpoints>
......
</endpoints>
然后您可以按以下方式在主 web.config 文件中使用此 Endpoints.config 文件
<system.web>
...
<endpoints configSource="Endponts.config" />
...
</system.web>
我是一名优秀的程序员,十分优秀!