检索包含XML的HTTP POST请求

时间:2012-04-06 20:40:44

标签: c# xml http iis post

我需要设置一个通过HTTP POST侦听XML文档的网页。我不需要POST,我需要接收POST。这是什么对象?我应该使用HTTP处理程序,Web服务,webRequest,Stream还是其他什么?我需要使用IIS服务器而不喜欢C#。

我试过......

  1. 我不认为我可以使用WebRequest,因为我没有发送请求,只是等待它们。

  2. “HttpRequest.InputStream”但我不确定如何使用它或放在哪里。我是否需要将其与Web服务或asp.net应用程序一起使用?我把它放进去了 http://forums.asp.net/t/1371873.aspx/1

  3. 我尝试了一个简单的网络服务http://msdn.microsoft.com/en-us/library/bb412178.aspx - 但是当我尝试访问“http:// localhost:8000 / EchoWithGet?s = Hello,world!”时,我得到了一个“网页”无法找到错误“

  4. 如果有人有任何有用的代码或链接会很棒!

    编辑: 我正在尝试接收来自其他程序的通知。

2 个答案:

答案 0 :(得分:12)

你可以写一个你将在IIS中托管的ASP.NET应用程序,你可以在其中拥有.ASPX页面或通用.ASHX handler(取决于你希望如何格式化结果 - 你想要吗?返回HTML或其他类型)然后阅读Request.InputStream,其中包含来自客户端的请求正文。

以下是如何编写通用处理程序(MyHandler.ashx)的示例:

public class MyHandler : IHttpHandler
{
    public void ProcessRequest(HttpContext context)
    {
        var stream = context.Request.InputStream;
        byte[] buffer = new byte[stream.Length];
        stream.Read(buffer, 0, buffer.Length);
        string xml = Encoding.UTF8.GetString(buffer);

        ... do something with the XML

        // We only set the HTTP status code to 202 indicating to the
        // client that the request has been accepted for processing
        // but we leave an empty response body
        context.Response.StatusCode = 202;
    }

    public bool IsReusable
    {
        get
        {
            return false;
        }
    }
}

答案 1 :(得分:0)

我不知道在哪里打电话或使用处理程序。这就是我到目前为止......

Default.aspx的

<%@Page Inherits="WebApplication1._Default"%>
<%@OutputCache Duration="10" Location="Server" varybyparam="none"%>
<script language="C#" runat="server">
  void Page_Init(object sender, EventArgs args) {

  }     
}
</script>
<html>
  <body>
  </body>
</html>

Default.aspx.cs

namespace WebApplication1  
{
  public partial class _Default : System.Web.UI.Page
  {
    protected void Page_Load(object sender, EventArgs e)
    {
        HttpContext contex = Context;
        MyHandler temp = new MyHandler();
        temp.ProcessRequest(context);
    }
  }

    public class MyHandler : IHttpHandler
    {
       public void ProcessRequest(HttpContext context)
       {
         var stream = context.Request.InputStream;
         byte[] buffer = new byte[stream.Length];
         stream.Read(buffer, 0, buffer.Length);
         string xml = Encoding.UTF8.GetString(buffer);

         ... do something with the XML

        // We only set the HTTP status code to 202 indicating to the
        // client that the request has been accepted for processing
        // but we leave an empty response body
        context.Response.StatusCode = 202;
       }

      public bool IsReusable
      {
        get
        {
          return false;
        }
      }
   }
}