我是WCF的新手,我尝试创建我的第一个WCF服务 - 客户端应用程序。我使用Visual Studio 2010。
保持基本WCF服务正常工作的最低配置是什么?
答案 0 :(得分:-1)
服务器端配置
<services>
<service name="Program01.TestClass" behaviorConfiguration="testBehavior">
<endpoint address="" binding="basicHttpBinding"
contract="Contracts.IContract"/>
<host>
<baseAddresses>
<add baseAddress="http://localhost:9817/TestService"/>
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="testBehavior">
<serviceDebug includeExceptionDetailInFaults="true"/>
<serviceMetadata httpGetEnabled="true"/>
</behavior>
</serviceBehaviors>
</behaviors>
客户端配置
<client>
<endpoint address="http://localhost:9817/TestService" binding="basicHttpBinding"
name="ClientEndPoint"
contract="Contracts.IContract"/>
</client>
使用ChannelFactory获取代理并调用该方法。干杯:) -