如何在 WCF REST 服务中访问 XML 格式的请求正文?

发布于 2024-12-01 21:27:02 字数 86 浏览 0 评论 0原文

我可以创建 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

做个少女永远怀春 2024-12-08 21:27:02

实际上,您可以使用此属性将参数传递给您的 Web 方法

[WebGet(UriTemplate = "users/{username}")]

,这是来自 msdn 的示例方法

[WebGet(UriTemplate = "users/{username}")]
[OperationContract]
User GetUserAccount(string username)
{
    if (!IsUserAuthorized(username))
    {
        WebOperationContext.Current.OutgoingResponse.StatusCode =
            HttpStatusCode.Unauthorized;
        return;
    }
    User user = FindUser(username);
    if (user == null)
    {
        WebOperationContext.Current.OutgoingResponse.SetStatusAsNotFound();
        return null;
    }
    return user;
}

You can actually pass arguments to to your web methods using this attribute

[WebGet(UriTemplate = "users/{username}")]

here is a sample method from msdn

[WebGet(UriTemplate = "users/{username}")]
[OperationContract]
User GetUserAccount(string username)
{
    if (!IsUserAuthorized(username))
    {
        WebOperationContext.Current.OutgoingResponse.StatusCode =
            HttpStatusCode.Unauthorized;
        return;
    }
    User user = FindUser(username);
    if (user == null)
    {
        WebOperationContext.Current.OutgoingResponse.SetStatusAsNotFound();
        return null;
    }
    return user;
}
氛圍 2024-12-08 21:27:02

在 MVC3 中,Request 对象在控制器中可用,主体内容在 InputStream 对象中可用。这段代码对我有用:

        this.Request.InputStream.Position = 0;
        var xmlContent = new System.IO.StreamReader(this.Request.InputStream).ReadToEnd();

希望有帮助。

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:

        this.Request.InputStream.Position = 0;
        var xmlContent = new System.IO.StreamReader(this.Request.InputStream).ReadToEnd();

Hope that helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文