gpt4 book ai didi

c# - WCF JSON POST 请求,单个字符串参数未绑定(bind)并返回 400

转载 作者:太空狗 更新时间:2023-10-29 18:26:44 25 4
gpt4 key购买 nike

在我的 WCF(天蓝色云)服务中,我想支持 JSON。我正在创建一些测试方法来查看是否一切正常。我可以让 GET 调用正常工作,但是当我使用简单参数执行 POST 时,我总是会得到:

The remote server returned an error: (400) Bad Request.

如果我不发送参数,它将执行该方法,但当然会将空值作为参数。我尝试了不同格式的 JSON 和 WebMessageBodyStyle,但似乎都不起作用。

如果我将参数类型更改为 Stream,我会收到数据,但我必须手动反序列化它。这不应该是必要的吧?

接口(interface):

        [OperationContract]
[WebInvoke(UriTemplate = "Test",
Method = "POST",
BodyStyle = WebMessageBodyStyle.WrappedRequest,
RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json)]
string Test(string data);

实现:

        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\"";

关于c# - WCF JSON POST 请求,单个字符串参数未绑定(bind)并返回 400,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30653751/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com