JSON的WCF REST POST:参数为空

时间:2011-07-26 20:01:37

标签: wcf json fiddler

使用Fiddler我将JSON消息发布到我的WCF服务。该服务使用System.ServiceModel.Activation.WebServiceHostFactory

[OperationContract]
[WebInvoke
(UriTemplate = "/authenticate",
       Method = "POST",
       ResponseFormat = WebMessageFormat.Json,
       BodyStyle = WebMessageBodyStyle.WrappedRequest
       )]
String Authorise(String usernamePasswordJson);

当发布POST时,我可以进入代码,但参数 usernamePasswordJson null 。这是为什么?

注意:当我将 BodyStyle 设置为 Bare 时,该帖子甚至没有找到我调试的代码。

这是小提琴画面: enter image description here

1 个答案:

答案 0 :(得分:19)

您将参数声明为String类型,因此它需要一个JSON字符串 - 并且您将JSON对象传递给它。

要接收该请求,您需要签订类似下面的合同:

[ServiceContract]
public interface IMyInterface
{
    [OperationContract]
    [WebInvoke(UriTemplate = "/authenticate",
           Method = "POST",
           ResponseFormat = WebMessageFormat.Json,
           BodyStyle = WebMessageBodyStyle.Bare)]
    String Authorise(UserNamePassword usernamePassword);
}

[DataContract]
public class UserNamePassword
{
    [DataMember]
    public string UserName { get; set; }
    [DataMember]
    public string Password { get; set; }
}