引用的WCF服务没有使用app.config
本文关键字:app config WCF 服务 引用 | 更新日期: 2023-09-27 18:06:29
我编写了一个在DLL中引用的WCF服务。在我添加了这个服务引用之后,一个带有所需数据的app.config就自动生成了。
客户端正在使用dll与wcf服务通信…没什么特别的。但是当我试图创建服务引用的对象时,它崩溃了,说它找不到端点地址。
我搜索了一下,并通过将绑定和地址传递给服务引用来修复它:
readonly BasicHttpBinding _binding = new BasicHttpBinding();
readonly EndpointAddress _address = new EndpointAddress("http://localhost:50309/CustomerService.svc");
using (CustomerServiceClient client = new CustomerServiceClient(_binding, _address))
{
return client.GetActions(customerNumber);
}
我现在想知道,为什么我要传递这些参数,当这些数据已经在自动生成的app.config。我删除了app.config的内容…而且这些数据似乎没有在任何地方使用。
我做错了什么吗?
编辑:DLL项目中的app config:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_ICustomerService" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:50309/CustomerService.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_ICustomerService"
contract="ServiceReference.ICustomerService" name="BasicHttpBinding_ICustomerService" />
</client>
</system.serviceModel>
</configuration>
请注意以下事项: dll可以不有自己的app.config
!
如果你想让DLL使用配置值,通常使用DLL项目的属性创建它们,但是然后将设置部分从DLL的app.config
复制到EXE的app.config
。此外,您需要复制相应的sectionGroup
条目。
DLL将使用应用程序exe.config
文件中的设置。
提供应用程序和DLL设置的EXE项目的app.config
示例:
<?xml version="1.0"?>
<configuration>
<configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="ExeProject" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
<section name="DllProject" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
</startup>
<applicationSettings>
<ExeProject>
<setting name="..." serializeAs="String">
<value>...</value>
</setting>
</ExeProject>
<DllProject>
<setting name="..." serializeAs="String">
<value>...</value>
</setting>
</DllProject>
</applicationSettings>
</configuration>
因为你的dll 不能自己运行,它需要一个可执行文件来使用(无论是windows服务,web服务,普通桌面应用程序等)。因此,dll使用可执行文件的.config文件-这就是为什么您的dll似乎忽略了它的配置。