我正在本地主机上创建WCF服务应用程序,并且在向客户端应用程序添加服务引用时遇到了麻烦(在同一Visual Studio解决方案中)
我收到一条错误消息:“合同要求使用双工,但是绑定'BasicHttpBinding'不支持它,或者没有正确配置为支持它。”当我尝试添加服务引用时。我也可以启动该服务,它会自动打开我的浏览器。从那时起,单击ScadaService.svc会显示相同的错误。
当我将服务名称更改为[ProjectName] .ScadaService时,出现了另一个错误,该错误表明没有端点侦听'http://localhost:11303/ScadaService.svc/ $ metadata'。
我已经将整个代码粘贴到新的项目类中,但没有成功。
唯一没有回调函数的协定具有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>
服务合同:
[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);
}
答案 0 :(得分:0)
不确定是否有帮助,但是我遇到的唯一问题是重复的OperationName。更改OperationName后,我无法重现您的问题,可以添加对服务的引用。
此外,我删除了您的枚举类型SignalType并将其替换为int。
下面是我的合同。
[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
}
我的svc
<%@ ServiceHost Language="C#" Debug="true" Service="Service.callback.ScadaService" %>
我的web.config。与您相同的Metaservice行为
<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>