• WCF note1


    Summary of WCF

    Client to use service

    1. use ChannelFactory to create proxy to use service. Client code show below.
    using System;
    using System.ServiceModel;
    using Artech.WcfServices.Service.Interface;
    using System.ServiceModel.Channels;
    namespace Artech.WcfServices.Client
    {
        class Program
        {
            static void Main(string[] args)
            {
                using (ChannelFactory<ICalculator> channelFactory = new ChannelFactory<ICalculator>("calculatorservice"))
                {
                    ICalculator calculator = channelFactory.CreateChannel();
                    using (OperationContextScope contextScope = new OperationContextScope(calculator as IClientChannel))
                    {
                        string sn = "{DDA095DA-93CA-49EF-BE01-EF5B47179FD0}";
                        string ns = "http://www.artech.com/";
                        AddressHeader addressHeader = AddressHeader.CreateAddressHeader("sn", ns, sn);
                        MessageHeader messageHeader = addressHeader.ToMessageHeader();
                        OperationContext.Current.OutgoingMessageHeaders.Add(messageHeader);
                        Console.WriteLine("x + y = {2} when x = {0} and y = {1}", 1, 2, calculator.Add(1, 2));
                    }
                }
                Console.Read();
            }
        }
    }
    

    we put our endpoing in config file

    <configuration>
      <system.serviceModel>
        <client>
          <endpoint name="calculatorservice"
                    address="http://127.0.0.1:3721/calculatorservice"
                    binding="ws2007HttpBinding"
                    contract="Artech.WcfServices.Service.Interface.ICalculator"/>
          </client>
      </system.serviceModel>
    </configuration>
    
    1. service Contract definition
    using System.ServiceModel;
    namespace Artech.WcfServices.Service.Interface
    {
        [ServiceContract(Name = "CalculatorService", Namespace ="http://www.artech.com/")]
        public interface ICalculator
        {
            [OperationContract]
            double Add(double x, double y);
        }
    }
    
    1. service definition and use host the service
    using Artech.WcfServices.Service.Interface;
    using System.ServiceModel;
    namespace Artech.WcfServices.Service
    {
        [ServiceBehavior(AddressFilterMode = AddressFilterMode.Any)]
        public class CalculatorService : ICalculator
        {
            public double Add(double x, double y)
            {
                return x + y;
            }
        }
    }
    

    service host

      using (ServiceHost host = new ServiceHost(typeof(CalculatorService)))
                {
                    host.Open();
                    Console.Read();
                }
    

    we put our endpoint definition in the config file
    service host config

    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
        <system.serviceModel>
            <services>
                <service name="Artech.WcfServices.Service.CalculatorService">
                  <endpoint address="http://127.0.0.1:3721/calculatorservice"
                            binding="ws2007HttpBinding"
                            contract="Artech.WcfServices.Service.Interface.ICalculator">
                    <headers>
                      <sn xmlns="http://www.artech.com/">{DDA095DA-93CA-49EF-BE01-EF5B47179FD0}</sn>
                    </headers>
                  </endpoint>
                </service>
            </services>
        </system.serviceModel>
    </configuration>
    

    Linstenuri vs uri

    1. if the listenUriMode of endpoint set to Unique, three answers: 1. if http, the listenUri will add a guid after the Uri; 2. if tcp,and portshare is disable, it will use another port to take as uri. 3. if tcp and portshare is enable, it will use the same uri but add guid after it.
  • 相关阅读:
    To do list
    2020 上半学期比赛记录
    板子
    Project Euler 1~10 野蛮题解
    卡常火车头
    防止unordered_map 被卡方法
    2019 香港区域赛 BDEG 题解
    2019徐州区域赛 ACEFM 题解 & pollard-rho & miller-rabin & 求出每个子树的重心 板子
    BST-splay板子
    ZJOI2017(2) 游记
  • 原文地址:https://www.cnblogs.com/kongshu-612/p/5554997.html
Copyright © 2020-2023  润新知