我有这个App.config在我的wcf服务库:
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="addr" value="net.tcp://localhost:22222/AdministrationService/"/>
</appSettings>
<system.serviceModel>
<services>
<service name="Watchman.WcfService.AdministrationService" behaviorConfiguration="MyBehavior">
<host>
<baseAddresses>
<add baseAddress="net.tcp://localhost:22222/AdministrationService/"/>
</baseAddresses>
</host>
<endpoint name="Ep1" address="net.tcp://localhost/AdministrationService/" binding="netTcpBinding" bindingConfiguration="DuplexBinding" contract="Watchman.WcfService.Interfaces.IAdministration"/>
<endpoint name="mex" address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="MyBehavior">
<serviceThrottling maxConcurrentSessions="10000"/>
<serviceMetadata httpGetEnabled="true" httpGetUrl="http://localhost/AdministrationService/Ep1/wsdl"/>
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<netTcpBinding>
<binding name="DuplexBinding" sendTimeout="00:00:01">
<reliableSession enabled="true"/>
<security mode="None"/>
</binding>
</netTcpBinding>
</bindings>
</system.serviceModel>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0,Profile=Client"/>
</startup>
</configuration>
but I got error:
"The Address property on ChannelFactory.Endpoint was null. The ChannelFactory's Endpoint must have a valid Address specified."
似乎应用程序没有这个tcp.net端点。为什么?
我有这个App.config在我的wcf服务库
你不能在wcf类库中有一个app.config,并期望wcf从中读取设置。这说不通啊。像app.config这样的配置文件是在最终的可执行应用程序项目(如控制台应用程序、WinForms、WPF等)中定义的。如果是web应用程序,则使用web.config。但是对于类库来说,没有app.config这样的东西。所以你可能需要在app/web中包含这个WCF配置。使用您的类库配置应用程序
您已经为net指定了一个基址。Tcp,即网络上的地址。TCP端点变成一个相对地址。因此,有效的端点地址变成net.tcp://localhost:22222/AdministrationService/localhost/AdministrationService/。
将端点上的地址更改为相对地址,并使用svcutil重新生成代理类。
我刚刚注意到svcutil在wcf客户端项目中生成坏端点。有
<endpoint binding="basicHttpBinding"
bindingConfiguration="DefaultBinding_IAdministration"
contract="IAdministration"
name="DefaultBinding_IAdministration_IAdministration" />"
而不是我的net.tcp
端点。
我还观察到这是因为
生成了ProxyFile.cs
和App.config
svcutil WcfServiceLibrary.dll
如果我从元数据生成以下文件:
svcutil net.tcp://localhost:8080/AdministrationService/mex /language:C# /out:ProxyFile.cs /config:App.config
那么它工作得很好(在App配置中描述正确的网络)。tcp端点)
有人知道为什么svcutil与*.dll的合作出错了吗?