• WCF简单实例[改进版]


    一 实例结构

    1)solution如下:

     

    2)dependency如下:

     

    *  Contracts 其实就是interface,用来实现service和client的松耦合;

    *  Services 是真正的对contracts实现;

    *  Hosting 用来宿主 services,是其能够被client访问;

    *  client 用来访问wcf service;

    二 contracts

    ICalculator.cs文件如下:

     using System.ServiceModel;

     
    namespace Artech.WcfServices.Contracts
     {
         [ServiceContract(Name
    ="CalculatorService", Namespace="http://www.artech.com/")]
         
    public interface ICalculator
        {

           [OperationContract]
           
    double Add(double x, double y);

            [OperationContract]
            
    double Subtract(double x, double y); 

            [OperationContract]
            
    double Multiply(double x, double y); 

            [OperationContract]
            
    double Divide(double x, double y);      
        } 
    }


    三 services

    CalculatorService.cs文件如下:

    using Artech.WcfServices.Contracts;

    namespace Artech.WcfServices.Services
    {

        
    public class CalculatorService : ICalculator
        {
            
    public double Add(double x, double y)
            {
                
    return x + y;
            }
            
    public double Subtract(double x, double y)
            {
                
    return x - y;
            }
            
    public double Multiply(double x, double y)
            {
                
    return x * y;
            }
            
    public double Divide(double x, double y)
            {
                
    return x / y;
            }
        }
    }

    四 hosting

    app.config文件如下:

    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
      
    <system.serviceModel>
        
    <behaviors>
          
    <serviceBehaviors>
            
    <behavior name="metadataBehavior">
              
    <serviceMetadata httpGetEnabled="true" httpGetUrl="http://localhost:8888/calculatorservice/metadata" />
            
    </behavior>
          
    </serviceBehaviors>
        
    </behaviors>
        
    <services>
          
    <service behaviorConfiguration="metadataBehavior" name="Artech.WcfServices.Services.CalculatorService">
            
    <endpoint address="http://localhost:8888/calculatorservice" binding="wsHttpBinding"  contract="Artech.WcfServices.Contracts.ICalculator" />
          
    </service>
        
    </services>
      
    </system.serviceModel>
    </configuration>

    Hosting.cs文件如下:

    using System;
    using System.ServiceModel;

    using Artech.WcfServices.Contracts;
    using Artech.WcfServices.Services;

    namespace Artech.WcfServices.Hosting
    {
       
    class Program
       {

           
    static void Main(string[] args)
           {
               
    using (ServiceHost host = new ServiceHost(typeof(CalculatorService)))
               {                
                   host.Opened 
    += delegate
                    {
                        Console.WriteLine(
    "CalculaorService已经启动,按任意键终止服务!");
                    };

                    host.Open();
                    Console.Read();
                }
            }
        }
    }

    五 client

    app.config文件如下:

    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
    <system.serviceModel>
    <client>
    <endpoint address="http://localhost:8888/calculatorservice" binding="wsHttpBinding"
    contract
    ="Artech.WcfServices.Contracts.ICalculator" name="calculatorservice" />
    </client>
    </system.serviceModel>
    </configuration>

    client.cs文件如下:

    using System;
    using System.ServiceModel;

    using Artech.WcfServices.Contracts;

    namespace Artech.WcfServices.Client
    {
       
    class Program
       {
           
    static void Main(string[] args)
           {
               
    using (ChannelFactory<ICalculator> channelFactory = new ChannelFactory<ICalculator>("calculatorservice"))
                {
                    ICalculator proxy 
    = channelFactory.CreateChannel();
                    
    using (proxy as IDisposable)
                    {
                        Console.WriteLine(
    "x + y = {2} when x = {0} and y = {1}"12, proxy.Add(12));
                        Console.WriteLine(
    "x - y = {2} when x = {0} and y = {1}"12, proxy.Subtract(12));
                        Console.WriteLine(
    "x * y = {2} when x = {0} and y = {1}"12, proxy.Multiply(12));
                        Console.WriteLine(
    "x / y = {2} when x = {0} and y = {1}"12, proxy.Divide(12));
                    }
                }
               Console.ReadLine();
            }
        }
    }

    参考:http://www.cnblogs.com/artech/archive/2007/02/26/656901.html


    作者:iTech
    微信公众号: cicdops
    出处:http://itech.cnblogs.com/
    github:https://github.com/cicdops/cicdops

  • 相关阅读:
    前端项目升级和降级依赖的最佳姿势
    如果你github提交代码,报错remote: Support for password authentication was removed on August 13, 2021.
    js将连接符命名和驼峰命名互转
    滚动条常用样式
    计算该浏览器中滚动条的默认宽度
    解决webpack-dev-server启动后localhost:port可以访问,IP:port不能访问的问题
    获取滚动条宽度的方法
    mysql中的数据类型
    数据库和表的操作
    mysql插入,删除,修改记录
  • 原文地址:https://www.cnblogs.com/itech/p/1849841.html
Copyright © 2020-2023  润新知