gpt4 book ai didi

c# - 400 错误请求将 xml 负载发送到 WCF REST 服务

转载 作者:数据小太阳 更新时间:2023-10-29 02:09:05 26 4
gpt4 key购买 nike

我知道有一些帖子询问 400 错误,我相信我已经阅读了所有这些帖子,但我认为我面临的问题是不同的。

这是我的 WCF 服务契约(Contract)

[WebInvoke(UriTemplate = "/cust_key/{key}/prod_id/{id}", 
Method = "POST",
BodyStyle = WebMessageBodyStyle.Bare,
RequestFormat = WebMessageFormat.Xml,
ResponseFormat = WebMessageFormat.Xml)]
Stream GetData(string key, string id, string data);

这是我用来将请求发送到我的 rest svc 的代码

request.RequestUri = 
new Uri("http://localhost:3138/v1/cust_key/company1/prod_id/testProductID");
request.ContentType = "application/xml";
request.HttpMethod = "POST";

string xml =
@"<Product><name>dell 400</name><price>400 dollars</price></Product>";

byte[] message = Encoding.ASCII.GetBytes(xml);
string data = Convert.ToBase64String(message);
response = request.MakeWebRequest(null, data);

这给了我 400 bad request 错误。我尝试将 xml 字符串更改为以下两个,它们也产生 400 错误

<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">
<![CDATA[<Product><name>dell 400</name><price>400 dollars</price></Product>]]>
</string>

<![CDATA[<Product><name>dell 400</name><price>400 dollars</price></Product>]]>

如果负载 xml 为空字符串,则一切正常并返回 200。谁能帮帮我?

编辑:我的 web.config 部分。它从 WCF REST Service Template 40(CS) 开箱即用

<system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>
<standardEndpoints>
<webHttpEndpoint>
<!--
Configure the WCF REST service base address via the global.asax.cs file and the default endpoint
via the attributes on the <standardEndpoint> element below
-->
<standardEndpoint name="" helpEnabled="true" automaticFormatSelectionEnabled="true"/>
</webHttpEndpoint>
</standardEndpoints>

最佳答案

您的第二个示例使用 <string>元素应该工作。如果您知道收到的 XML 的架构,您可以执行以下操作:

[WebInvoke(UriTemplate = "/cust_key/{key}/prod_id/{id}", 
Method = "POST",
BodyStyle = WebMessageBodyStyle.Bare,
RequestFormat = WebMessageFormat.Xml,
ResponseFormat = WebMessageFormat.Xml)]
//Almost exacely the same except String is now Product in the method Parameters
Stream GetData(string key, string id, Product data);

[DataContract(Namespace = "")]
public class Prodect
{
[DataMember]
public string name { get; set; }
[DataMember]
public string price { get; set; }
}

然后使用您帖子中的客户端代码,它应该可以正常工作。另一方面,如果您希望您的 Web 服务动态接受不同的 XML,这些 XML 不是定义明确的数据协定,您可以按如下方式使用 XElement:

[WebInvoke(UriTemplate = "/cust_key/{key}/prod_id/{id}", 
Method = "POST",
BodyStyle = WebMessageBodyStyle.Bare,
RequestFormat = WebMessageFormat.Xml,
ResponseFormat = WebMessageFormat.Xml)]
//Almost exacely the same except String is now XElement
Stream GetData(string key, string id, XElement data);

关于c# - 400 错误请求将 xml 负载发送到 WCF REST 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9200300/

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