自托管WCF (Rest)只允许POST方法
本文关键字:POST 方法 Rest WCF | 更新日期: 2023-09-27 18:02:29
我的WCF服务是自托管的,我使用WebServiceHost
托管使用以下代码:
WcfGatewayDatas.cs
public WcfGatewayDatas()
{
Uri baseAddress = new Uri("http://localhost:1478/");
this.Host = new WebServiceHost(this, baseAddress);
this.host.open();
}
我的基本接口是这样的(不用担心新的):
IWcfGatewayDatas.cs
[ServiceContract]
public interface IWcfGatewayDatas : IExposeDatas
{
[WebGet(/*Method="GET", */UriTemplate = "Alarms/Last")]
[OperationContract]
new JaguarEvitech.AgentService.SpyAlarm GetLastAlarm();
}
我的配置文件:
<system.serviceModel>
<behaviors>
<endpointBehaviors>
<behavior name="Wcf">
<webHttp/>
</behavior>
</endpointBehaviors>
</behaviors>
<bindings>
<basicHttpBinding>
<binding name="WcfBinding"/>
</basicHttpBinding>
</bindings>
<services>
<service name="MilestonePlugin.Background.ExposeDatas.WcfGatewayDatas">
<endpoint behaviorConfiguration="Wcf" binding="webHttpBinding" contract="MilestonePlugin.Background.ExposeDatas.IWcfGatewayDatas" address="GatewayJaguar"></endpoint>
</service>
</services>
</system.serviceModel>
当服务启动时,我尝试使用web浏览器访问url (http://localhost:1478/GatewayJaguar/Alarms/Last),我总是有相同的错误:方法不允许。唯一允许的是post(无论我在我的接口WebGet或WebInvoke中写什么)。我错过什么了吗?
编辑:即使我的url不匹配的WCF函数,我有这个错误。
WCF默认只使用HTTP Post。这个链接解释了如何选择使用HTTP Get https://msdn.microsoft.com/en-us/library/bb628610(v=vs.110).aspx
我找到问题了。问题是一个错误的url请求。我想请求http://localhost:1478/GatewayJaguar/Alarms/Last,但是我的节目正在http://localhost:1478/Gatewayjaguar/GatewayJaguar/Alarms/Last上收听。我修改了uri,现在可以正常工作了