我编写了一个在DLL中引用的WCF服务。 在我添加了这个服务引用后,自动生成了一个app.config和所需的数据。
客户端正在使用dll与wcf服务进行通信......没什么特别的。 但是,当我试图创建服务引用的对象时...崩溃,说它无法找到端点地址。
我用Google搜索并通过将绑定和地址传递给服务引用来修复它:
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>
答案 0 :(得分:4)
请注意以下内容: 的
如果您希望DLL使用配置值,请使用DLL项目的属性正常创建它们,然后将设置部分从DLL的app.config
复制到EXE的{{ 1}}。此外,您需要复制相应的app.config
条目。
然后,DLL将使用应用程序的app.config
文件中的设置。
EXE项目的sectionGroup
示例,它为应用程序和DLL提供设置:
exe.config
答案 1 :(得分:0)
由于您的dll 无法单独运行,因此需要使用可执行文件(无论是Windows服务,Web服务,普通桌面应用程序等)。因此,dll使用它们所使用的可执行文件的.config文件 - 这就是为什么你的dll似乎忽略了它的配置。