WCF入门-项目间调用服务
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WCF入门-项目间调用服务相关的知识,希望对你有一定的参考价值。
练习WCF入库,添加了一个WCF项目,同时添加了一个控制台程序,在控制台程序启动时,调用WCF服务,报错。
控制台程序代码为:
namespace WcfConsumer { class Program { static void Main(string[] args) { using (ServiceHost serviceHost = new ServiceHost(typeof(testService))) { serviceHost.Open(); Console.WriteLine("WCF Service has started..."); Console.ReadLine(); serviceHost.Close(); } Console.WriteLine("The WCF Service has stopped..."); } } }
以上是关于WCF入门-项目间调用服务的主要内容,如果未能解决你的问题,请参考以下文章