标签:
<?xml version="1.0" encoding="utf-8" ?> <configuration> <system.web> <compilation debug="true" /> </system.web> <!-- 部署服务库项目时,必须将配置文件的内容添加到 主机的 app.config 文件中。System.Configuration 不支持库的配置文件。 --> <system.serviceModel> <services> <service name="WcfService.Library1.Service1"> <host> <baseAddresses> <add baseAddress = "http://localhost:20002/Design_Time_Addresses/WcfService.Library1/Service1/" /> </baseAddresses> </host> <!-- Service Endpoints --> <!-- 除非完全限定,否则地址将与上面提供的基址相关 --> <endpoint address="WcfService.Library1.Service1" binding="basicHttpBinding" contract="WcfService.Library1.IService1"> <!-- 部署时,应删除或替换下列标识元素,以反映 用来运行所部署服务的标识。删除之后,WCF 将 自动推断相应标识。 --> <identity> <dns value="localhost"/> </identity> </endpoint> <!-- Metadata Endpoints --> <!-- 元数据交换终结点供相应的服务用于向客户端做自我介绍。 --> <!-- 此终结点不使用安全绑定,应在部署前确保其安全或将其删除 --> <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/> </service> </services> <behaviors> <serviceBehaviors> <behavior> <!-- 为避免泄漏元数据信息, 请在部署前将以下值设置为 false --> <serviceMetadata httpGetEnabled="True"/> <!-- 要接收故障异常详细信息以进行调试, 请将以下值设置为 true。在部署前设置为 false 以避免泄漏异常信息 --> <serviceDebug includeExceptionDetailInFaults="False" /> </behavior> </serviceBehaviors> </behaviors> </system.serviceModel> </configuration>
添加控制台应用程序,引入WcfService.Library1的引用,添加using System.ServiceModel;库文件引用。将WcfService.Library1中的App.config复制到控制台应用下面。修改属性为始终复制。
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.ServiceModel; 5 using System.ServiceModel.Channels; 6 using System.ServiceModel.Description; 7 using System.Text; 8 using WcfService.Library1; 9 10 namespace WcfTest.Demo2 11 { 12 class Program 13 { 14 static void Main(string[] args) 15 { 16 CoreConfigOpen(); 17 } 18 19 /// <summary> 20 /// 通过加成配置App.config开启WCF服务 21 /// </summary> 22 static void CoreConfigOpen() 23 { 24 try 25 { 26 ServiceHost selfHost = new ServiceHost(typeof(WcfService.Library1.Service1)); 27 selfHost.Open(); 28 Console.WriteLine("寄宿到控制台应用程序,通过加载App.Config开启WCF服务"); 29 Console.ReadLine(); 30 } 31 catch (Exception ex) 32 { 33 Console.WriteLine("CoreCodeOpen Error:" + ex.Message); 34 } 35 } 36 } 37 }
生成后以管理员身份直接运行项目。
标签:
原文地址:http://www.cnblogs.com/heyangyi/p/5699741.html