• 协定类型不具有 ServiceContractAttribute 特性


    协定类型 ZBMService.QueryHistoryData 不具有 ServiceContractAttribute 特性。
    若要定义有效协定,指定的类型(协定接口或服务类)必须具有 ServiceContractAttribute 特性。

    Uri TradeServiceUriBase = new Uri("http://" + myName + ":8000/QueryHistoryData");

    //Create a ServiceHost for the Orderprocessor service.
    Type serviceType = typeof(QueryHistoryData);
    ServiceHost host = new ServiceHost(serviceType, TradeServiceUriBase);

    BasicHttpBinding httpBinding = new BasicHttpBinding();

    host.AddServiceEndpoint(typeof(QueryHistoryData), httpBinding, "");

    问题出在添加终结点的地方:

    需要修改为

    BasicHttpBinding httpBinding = new BasicHttpBinding();

    host.AddServiceEndpoint(typeof(IQueryHistoryData), httpBinding, "");

    ServiceHost初始化的时候,需要指定服务类型,使用的是类

    但是EndPoint初始化的时候,需要指定的接口

  • 相关阅读:
    前端
    小程序开发
    mpvue开发小程序
    (33)Vue购物车
    Vue的使用你学会了吗?
    (32)Vue模板语法
    (31)Vue安装
    (3)Angular的开发
    (2)Angular的开发
    (1)Angular的开发
  • 原文地址:https://www.cnblogs.com/chucklu/p/4698562.html
Copyright © 2020-2023  润新知