WCF JSON POST请求,单个字符串参数未绑定,返回400
本文关键字:绑定 返回 参数 单个 JSON POST 请求 WCF 字符串 | 更新日期: 2023-09-27 17:53:21
在我的WCF (azure云)服务中,我想支持JSON。我正在创建一些测试方法,看看是否一切工作。我可以让get调用工作,但是当我用一个简单的参数做POST时,我将总是得到:
The remote server returned an error: (400) Bad Request.
如果我不发送参数,它将执行该方法,但是使用空值作为参数。我尝试了不同格式的JSON和WebMessageBodyStyle,但似乎没有工作。
如果我将参数类型更改为Stream,我将接收数据,但我必须手动反序列化它。这不应该是必要的,对吧?
接口:
[OperationContract]
[WebInvoke(UriTemplate = "Test",
Method = "POST",
BodyStyle = WebMessageBodyStyle.WrappedRequest,
RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json)]
string Test(string data);
Impl:
public string Test(string data)
{
return "result is " + data;
}
测试客户端:
WebClient client = new WebClient();
client.Headers["Content-type"] = "application/json";
client.Encoding = System.Text.Encoding.UTF8;
string jsonInput = "{'data':'testvalue'}";
string postResponse = client.UploadString(postUrl, jsonInput);
Console.WriteLine("post response: " + postResponse);
黄金组合是在JSON代码中使用双引号结合WebMessageBodyStyle.WrappedRequest.
工作JSON: string jsonInput = "{'"data'":'"testvalue'"}";
当将WebMessageBodyStyle设置为Bare时,以下JSON会起作用:
string jsonInput = "'"testvalue'"";