WebHttpBinding 绑定中使用的默认标头内容类型值
我正在尝试使用默认的 WebHttpBinding 绑定发布到 REST 服务。该服务仅接受“text/xml”作为内容类型,并且 WebHttpBinding 发送“application/xml,charset-utf=8”。有没有办法在不使用 HttpWebRequest 的情况下更改默认内容类型?
I'm trying to POST to a REST service using the default WebHttpBinding binding. The service only accepts "text/xml" as the content-type and the WebHttpBinding is sending "application/xml, charset-utf=8". Is there a way to change the default content type without using the the HttpWebRequest?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在操作范围内使用
WebOperationContext
来更改请求的传出内容类型,如下所示。You can use the
WebOperationContext
inside an operation scope to change the outgoing content type of the requests, as shown below.