1

我编写了一个在 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项目中的应用程序配置:

<?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>    
4

2 回答 2

4

请注意以下几点:DLL不能 有自己的app.config

如果您希望 DLL 使用配置值,请使用 DLL 项目的属性正常创建它们,然后将设置部分从 DLL复制app.config到 EXE 的app.config. 此外,您需要复制相应的sectionGroup条目。

然后,DLL 将使用应用程序exe.config文件中的设置。

app.config为应用程序和 DLL 提供设置的 EXE 项目的示例:

<?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>
于 2013-03-28T09:32:34.797 回答
0

由于您的 dll无法自行运行,因此它需要一个可执行文件才能从中使用(无论是 Windows 服务、Web 服务、普通桌面应用程序等)。因此,dll 使用它们所使用的可执行文件的 .config 文件——这就是为什么您的 dll 似乎忽略了它的配置的原因。

于 2013-03-28T09:45:06.113 回答