如何在 WCF REST 服务中访问 XML 格式的请求正文?
我可以创建 WCF REST 服务并 POST、PUT 和 GET 数据。
如何在服务端访问 XML 格式的请求正文以发送到 SQL 数据库?
I can create a WCF REST service and POST, PUT and GET data OK.
How do I access the request body in XML format on the service side to send to an SQL database?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实际上,您可以使用此属性将参数传递给您的 Web 方法
,这是来自 msdn 的示例方法
You can actually pass arguments to to your web methods using this attribute
here is a sample method from msdn
在 MVC3 中,Request 对象在控制器中可用,主体内容在 InputStream 对象中可用。这段代码对我有用:
希望有帮助。
In MVC3, the Request object is available in the controller, with the content of the body being available in the InputStream object. This code worked for me:
Hope that helps.