当前位置: 移动技术网 > IT编程>开发语言>.net > WCF DEMO1 创建自托管宿主

WCF DEMO1 创建自托管宿主

2018年01月09日  | 移动技术网IT编程  | 我要评论

赵亚波,唐纳·卡兰,plu 丝丝

using System;
using System.ServiceModel;
using System.ServiceModel.Channels;    
//注意:需要引用程序集 System.ServiceModel 并在管理员模式下运行
    class Program
    {
        static void Main(string[] args)
        {
            Uri httpAddress = new Uri("http://localhost:8002");
            ServiceHost serviceHost = new ServiceHost(typeof(Service1), httpAddress);
            Binding binding = new WSHttpBinding();
            serviceHost.AddServiceEndpoint(typeof(IService1), binding, "http://localhost:8002/a");
            serviceHost.AddServiceEndpoint(typeof(IService1), binding, "http://localhost:8002/b");
            serviceHost.Open();
            Console.ReadLine();
            serviceHost.Close();

        }
    }
    [ServiceContract]
    public interface IService1
    {
        [OperationContract]
        void DoWork();
    }
    [ServiceContract]
    public interface IService2
    {
        [OperationContract]
        void Do();
    }
    public class Service1 : IService1, IService2
    {
        public void Do()
        {

        }

        public void DoWork()
        {

        }
    }

 

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网