c# - 无法添加服务器引用 : Contract requires Duplex, 但绑定(bind) 'BasicHttpBinding' 不支持它或未正确配置以支持它

标签 c# wcf

我正在本地主机上制作 WCF 服务应用程序,但在向客户端应用程序添加服务引用时遇到了问题(在同一个 Visual Studio 解决方案中)

我收到一条错误消息:“契约(Contract)需要 Duplex,但 Binding 'BasicHttpBinding' 不支持它或未正确配置以支持它。”当我尝试添加服务引用时。我还可以启动该服务,它会自动打开我的浏览器。从那时起,单击 ScadaService.svc 会显示相同的错误。

当我将服务名称更改为 [ProjectName].ScadaService 时,我得到了一个不同的错误,它表示没有端点监听 ' http://localhost:11303/ScadaService.svc/ $元数据'。

我已将我的全部代码逐个类粘贴到一个新项目中,但没有成功。

唯一没有回调函数的合约有 basicHttpBinding,将其更改为 wsDualHttpBinding 不起作用。

Web.config 文件

<?xml version="1.0"?>
<configuration>

  <appSettings>
    <add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
  </appSettings>
  <system.web>
    <compilation debug="true" targetFramework="4.6.1" />
    <httpRuntime targetFramework="4.6.1"/>
  </system.web>
  <system.serviceModel>
    <services>
      <service name="Service1">
        <endpoint address="RealTimeUnit" binding="basicHttpBinding" contract="Commons.ServiceContracts.IRTUService"/>
        <endpoint address="RealTimeUnit/Mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
        <endpoint address="DatabaseManager" binding="wsDualHttpBinding" contract="Commons.ServiceContracts.IDatabaseService"/>
        <endpoint address="DatabaseManager/Mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
        <endpoint address="Trending" binding="wsDualHttpBinding" contract="Commons.ServiceContracts.ITrendingService"/>
        <endpoint address="Trending/Mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
        <endpoint address="AlarmDisplay" binding="wsDualHttpBinding" contract="Commons.ServiceContracts.IAlarmService"/>
        <endpoint address="AlarmDisplay/Mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior>
          <!-- To avoid disclosing metadata information, set the values below to false before deployment -->
          <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
          <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
          <serviceDebug includeExceptionDetailInFaults="false"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <protocolMapping>
        <add binding="basicHttpsBinding" scheme="https" />
    </protocolMapping>    
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
  </system.serviceModel>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
    <!--
        To browse web app root directory during debugging, set the value below to true.
        Set to false before deployment to avoid disclosing web app folder information.
      -->
    <directoryBrowse enabled="true"/>
  </system.webServer>

</configuration>

服务契约(Contract):

[ServiceContract(CallbackContract = typeof(IAlarmCallback))]
public interface IAlarmService
{
    [OperationContract]
    void AlarmInit();
}
[ServiceContract]
public interface IAlarmCallback
{
    [OperationContract(IsOneWay = true)]
    void RaiseAlarm(Tag tag, double value);
}

[ServiceContract(CallbackContract = typeof(IDatabaseCallback))]
public interface IDatabaseService
{
    [OperationContract]
    void DatabaseInit();

    [OperationContract]
    void AddSimulationUnit(int address, SignalType signalType, int scanPeriod);

    [OperationContract]
    void RemoveSimulationUnit(int index);

    [OperationContract]
    void AddTag(Tag tag);

    [OperationContract]
    void ModifyTag(string tagId, Tag newTag);

    [OperationContract]
    void RemoveTag(string tagId);
}
[ServiceContract]
public interface IDatabaseCallback
{
    [OperationContract(IsOneWay = true)]
    void GetTags(List<Tag> tags);

    [OperationContract(IsOneWay = true)]
    void TagAdded(Tag tag);

    [OperationContract(IsOneWay = true)]
    void TagModified(string tagId, Tag newTag);

    [OperationContract(IsOneWay = true)]
    void TagRemoved(string tagId);
}

[DataContract]
public enum SignalType
{
    [EnumMember] Sine,
    [EnumMember] Cosine,
    [EnumMember] Ramp,
    [EnumMember] Triangular,
    [EnumMember] Rectangular,
    [EnumMember] Digital
}

[ServiceContract]
public interface IRTUService
{
    [OperationContract]
    void RTUInit(string iD, string publicKeyPath);

    [OperationContract]
    void RTUDelete(string iD, byte[] signature);

    [OperationContract]
    void RTScan(int address, double value, string iD, byte[] signature);
}

[ServiceContract(CallbackContract = typeof(ITrendingCallback))]
public interface ITrendingService
{
    [OperationContract]
    void InitTrending();
}

[ServiceContract]
public interface ITrendingCallback
{
    [OperationContract(IsOneWay = true)]
    void GetTags(List<Tag> tags);

    [OperationContract(IsOneWay = true)]
    void TagAdded(Tag tag);

    [OperationContract(IsOneWay = true)]
    void TagModified(string tagId, Tag newTag);

    [OperationContract(IsOneWay = true)]
    void TagRemoved(string tagId);

    [OperationContract(IsOneWay = true)]
    void NewScan(string tagId, double value);
}

最佳答案

不确定它是否有帮助,但我遇到您的代码的唯一问题是重复的 OperationName。我无法重现您的问题,在更改 OperationName 后,我可以添加对该服务的引用。

此外,我删除了您的枚举类型 SignalType 并将其替换为 int。

下面是我的契约(Contract)。

[DataContract]
public class Tag
{
    [DataMember]
    public string Name { get; set; }
}
[ServiceContract(CallbackContract = typeof(IAlarmCallback))]
public interface IAlarmService
{
    [OperationContract]
    void AlarmInit();
}
[ServiceContract]
public interface IAlarmCallback
{
    [OperationContract(IsOneWay = true)]
    void RaiseAlarm(Tag tag, double value);
}

[ServiceContract(CallbackContract = typeof(IDatabaseCallback))]
public interface IDatabaseService
{
    [OperationContract]
    void DatabaseInit();

    [OperationContract]
    void AddSimulationUnit(int address, int signalType, int scanPeriod);

    [OperationContract]
    void RemoveSimulationUnit(int index);

    [OperationContract]
    void AddTag(Tag tag);

    [OperationContract]
    void ModifyTag(string tagId, Tag newTag);

    [OperationContract]
    void RemoveTag(string tagId);
}
[ServiceContract]
public interface IDatabaseCallback
{
    [OperationContract(IsOneWay = true)]
    void GetTags(List<Tag> tags);

    [OperationContract(IsOneWay = true)]
    void TagAdded(Tag tag);

    [OperationContract(IsOneWay = true)]
    void TagModified(string tagId, Tag newTag);

    [OperationContract(IsOneWay = true)]
    void TagRemoved(string tagId);
}

[ServiceContract]
public interface IRTUService
{
    [OperationContract]
    void RTUInit(string iD, string publicKeyPath);

    [OperationContract]
    void RTUDelete(string iD, byte[] signature);

    [OperationContract]
    void RTScan(int address, double value, string iD, byte[] signature);
}

[ServiceContract(CallbackContract = typeof(ITrendingCallback))]
public interface ITrendingService
{
    [OperationContract]
    void InitTrending();
}

[ServiceContract]
public interface ITrendingCallback
{
    [OperationContract(IsOneWay = true,Name = "TrendGetTags")]
    void GetTags(List<Tag> tags);

    [OperationContract(IsOneWay = true, Name = "TrendTagAdd")]
    void TagAdded(Tag tag);

    [OperationContract(IsOneWay = true, Name = "TrendTagModified")]
    void TagModified(string tagId, Tag newTag);

    [OperationContract(IsOneWay = true, Name = "TrendTagRemoved")]
    void TagRemoved(string tagId);

    [OperationContract(IsOneWay = true, Name = "TrendNewScan")] // change the operation name
    void NewScan(string tagId, double value);
}

我的服务是空的。

 public class ScadaService : IRTUService,IDatabaseService,ITrendingService,IAlarmService
{
    public void AddSimulationUnit(int address, int signalType, int scanPeriod)
    {

    }

   // ignore other method


}

我的服务

<%@ ServiceHost Language="C#" Debug="true" Service="Service.callback.ScadaService"  %>

我的 web.config.Metaservicebehavior 和你的一样

  <service name="Service.callback.ScadaService">
    <endpoint address="RealTimeUnit" binding="basicHttpBinding" contract="ServiceInterface.callback.IRTUService"/>
    <endpoint address="RealTimeUnit/Mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
    <endpoint address="DatabaseManager" binding="wsDualHttpBinding" contract="ServiceInterface.callback.IDatabaseService"/>
    <endpoint address="DatabaseManager/Mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
    <endpoint address="Trending" binding="wsDualHttpBinding" contract="ServiceInterface.callback.ITrendingService"/>
    <endpoint address="Trending/Mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
    <endpoint address="AlarmDisplay" binding="wsDualHttpBinding" contract="ServiceInterface.callback.IAlarmService"/>
    <endpoint address="AlarmDisplay/Mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
  </service>

关于c# - 无法添加服务器引用 : Contract requires Duplex, 但绑定(bind) 'BasicHttpBinding' 不支持它或未正确配置以支持它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54246560/

相关文章:

c# - 统一。尝试伪造内部船舶重力。旋转物体的刚体 child 不断滑动

javascript - 在不使用 ScriptManager 的情况下从 Javascript 访问 WCF WebService

c# - 让 WCF 回调与 netTcpBinding 一起工作

c# - 使用 Network Solutions 托管电子邮件的 System.Net 邮件设置

c# - 使用 C# 的正则表达式匹配(简单??)正则表达式

WCF/WCF 数据服务/WCF RIA 服务

.net - "There was no endpoint listening at..."

c# - 包装 WCF 调用 - 发出捕获 lambda 或更好的方法?

c# - WCF 用户身份验证最佳实践

c# - Azure Function App 以编程方式更改计划