我想创建一个Web应用程序,它接受一个POST方法来使用ReSTful结构更新数据库。
我的问题是,当我将JSON对象发布到URL(使用fiddler)时,我收到错误404.
我尝试调用的方法使用以下属性公开:
[WebInvoke(Method="POST", UriTemplate="projectors", RequestFormat=WebMessageFormat.Json,BodyStyle=WebMessageBodyStyle.Wrapped )]
[OperationContract]
void RecordBreakdown(string sn, int modelCode);
Web配置文件有一个绑定到公开方法的服务,下面是一个抽象:
<system.serviceModel>
<bindings/>
<services>
<service name="VIServiceToolServiceLibrary.ProjectorService"
behaviorConfiguration="RESTBehaviour">
<endpoint address=""
binding="webHttpBinding"
contract="VIServiceToolServiceLibrary.IProjectorService"
behaviorConfiguration="RESTEndPointbehaviour" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:8080/projectorservice/" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="RESTBehaviour">
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="true"/>
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="RESTEndPointbehaviour">
<webHttp/>
</behavior>
</endpointBehaviors>
</behaviors>
如果我在VS或IIS中运行Web应用程序,我可以看到svc文件没问题:
http://localhost:5970/Service.svc
http://localhost/vi/Service.svc
但是当我发布请求时,我收到错误404消息
POST http://localhost/vi/projectors HTTP/1.1
User-Agent: Fiddler
Host: localhost
Content-Length: 27
{sn:"23434", modelCode:34 }
由于
答案 0 :(得分:1)
出现错误404有两个原因。
1st:基地址不正确。我使用的是早期版本中已被超越的命名约定
第二:POST方法中的url不正确。我应该在URL中包含Service文件的名称,例如localhost / vi / Service.svc / projectors
我还发现这篇文章很有帮助 http://msdn.microsoft.com/en-us/library/dd203052.aspx解决问题