我制作了 .net 3.5 类库项目,其中包含对 web servis 的服务引用。并在我的 .net 3.5 应用程序中成功使用此 xx.dll 及其 xx.dll.config。但是,现在我想将它与我的 .net 2.0 应用程序一起使用,在我的 .net 2.0 应用程序的一个窗口形式中更精确。但是我收到了这个错误:“..这可能是因为没有为您的应用程序找到配置文件..”我想我必须在我的 .net 2.0 应用程序中包含适当的 dll.config 文件。这是我的配置文件的内容:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<bindings>
<customBinding>
<binding name="RzzoServicePortBinding">
<security defaultAlgorithmSuite="TripleDes" authenticationMode="UserNameOverTransport"
requireDerivedKeys="true" securityHeaderLayout="Lax" includeTimestamp="false">
<localClientSettings detectReplays="false" />
<localServiceSettings detectReplays="false" />
</security>
<textMessageEncoding messageVersion="Soap11" />
<httpsTransport />
</binding>
</customBinding>
</bindings>
<client>
<endpoint address="https://webapp2.rzzo.rs:443/rzzo/RzzoService"
binding="customBinding" bindingConfiguration="RzzoServicePortBinding"
contract="ServiceReference1.RzzoService" name="RzzoServicePort" />
</client>
</system.serviceModel>
</configuration>
我怎样才能做到这一点?先感谢您!