码迷,mamicode.com
首页 > 其他好文 > 详细

WCF入门-项目间调用服务

时间:2016-11-30 17:04:22      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:tar   open   ring   http   img   调用   str   void   string   

练习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入门-项目间调用服务

标签:tar   open   ring   http   img   调用   str   void   string   

原文地址:http://www.cnblogs.com/shanheng/p/6118177.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!