wcf中配置文件
<?xml version="1.0" encoding="utf-8" ?> <configuration> <system.serviceModel> <services> <service name="WinformHello.HelloService" behaviorConfiguration="TestBehavior"> <host> <baseAddresses> <add baseAddress="http://localhost:8001/Hello"/> </baseAddresses> </host> <endpoint address="" binding="basicHttpBinding" contract="WcfServiceDemo.IHelloService"></endpoint> </service> </services> <behaviors> <serviceBehaviors> <behavior name="TestBehavior"> <serviceMetadata httpGetEnabled="true"/> </behavior> </serviceBehaviors> </behaviors> </system.serviceModel> </configuration>