原文:Batching Handler for ASP.NET Web API

  1. 自定义实现HttpMessageHandler

       public class BatchHandler : HttpMessageHandler
    {
    HttpMessageInvoker _server; public BatchHandler(HttpConfiguration config)
    {
    _server = new HttpMessageInvoker(new HttpServer(config));
    } protected override async Task<HttpResponseMessage> SendAsync(
    HttpRequestMessage request,
    CancellationToken cancellationToken)
    {
    // Return 400 for the wrong MIME type
    if ("multipart/batch" !=
    request.Content.Headers.ContentType.MediaType)
    {
    return request.CreateResponse(HttpStatusCode.BadRequest);
    } // Start a multipart response
    var outerContent = new MultipartContent("batch");
    var outerResp = request.CreateResponse();
    outerResp.Content = outerContent; // Read the multipart request
    var multipart = await request.Content.ReadAsMultipartAsync(); foreach (var httpContent in multipart.Contents)
    {
    HttpResponseMessage innerResp = null; try
    {
    // Decode the request object
    var innerReq = await
    httpContent.ReadAsHttpRequestMessageAsync(); // Send the request through the pipeline
    innerResp = await _server.SendAsync(
    innerReq,
    cancellationToken
    );
    }
    catch (Exception)
    {
    // If exceptions are thrown, send back generic 400
    innerResp = new HttpResponseMessage(
    HttpStatusCode.BadRequest
    );
    } // Wrap the response in a message content and put it
    // into the multipart response
    outerContent.Add(new HttpMessageContent(innerResp));
    } return outerResp;
    }
    }
  2. 配置Web Api config

      var batchHandler = new BatchHandler(config);
    
     config.Routes.MapHttpRoute("batch", "api/batch",
    null, null, batchHandler); config.Routes.MapHttpRoute("default", "api/{controller}/{id}",
    new { id = RouteParameter.Optional });
  3. 模拟请求

     var client = new HttpClient();
    var batchRequest = new HttpRequestMessage(
    HttpMethod.Post,
    "http://localhost/api/batch"
    ); var batchContent = new MultipartContent("batch");
    batchRequest.Content = batchContent; batchContent.Add(
    new HttpMessageContent(
    new HttpRequestMessage(
    HttpMethod.Get,
    "http://localhost/api/values"
    )
    )
    ); batchContent.Add(
    new HttpMessageContent(
    new HttpRequestMessage(
    HttpMethod.Get,
    "http://localhost/foo/bar"
    )
    )
    ); batchContent.Add(
    new HttpMessageContent(
    new HttpRequestMessage(
    HttpMethod.Get,
    "http://localhost/api/values/1"
    )
    )
    ); using (Stream stdout = Console.OpenStandardOutput())
    {
    Console.WriteLine("<<< REQUEST >>>");
    Console.WriteLine();
    Console.WriteLine(batchRequest);
    Console.WriteLine();
    batchContent.CopyToAsync(stdout).Wait();
    Console.WriteLine(); var batchResponse = client.SendAsync(batchRequest).Result; Console.WriteLine("<<< RESPONSE >>>");
    Console.WriteLine();
    Console.WriteLine(batchResponse);
    Console.WriteLine();
    batchResponse.Content.CopyToAsync(stdout).Wait();
    Console.WriteLine();
    Console.WriteLine();
    }

结果如下:

<<< REQUEST >>>

Method: POST,

RequestUri: 'http://localhost/api/batch',

Version: 1.1,

Content: System.Net.Http.MultipartContent,

Headers:

{

Content-Type: multipart/batch; boundary="3bc5bd67-3517-4cd0-bcdd-9d23f3850402"

}

--3bc5bd67-3517-4cd0-bcdd-9d23f3850402

Content-Type: application/http; msgtype=request

GET /api/values HTTP/1.1

Host: localhost

--3bc5bd67-3517-4cd0-bcdd-9d23f3850402

Content-Type: application/http; msgtype=request

GET /foo/bar HTTP/1.1

Host: localhost

--3bc5bd67-3517-4cd0-bcdd-9d23f3850402--

<<< RESPONSE >>>

StatusCode: 200,

ReasonPhrase: 'OK',

Version: 1.1,

Content: System.Net.Http.StreamContent,

Headers:

{

Pragma: no-cache

Cache-Control: no-cache

Date: Thu, 21 Jun 2012 00:21:40 GMT

Server: Microsoft-IIS/8.0

X-AspNet-Version: 4.0.30319

X-Powered-By: ASP.NET

Content-Length: 658

Content-Type: multipart/batch

Expires: -1

}

--3d1ba137-ea6a-40d9-8e34-1b8812394baa

Content-Type: application/http; msgtype=response

HTTP/1.1 200 OK

Content-Type: application/json; charset=utf-8

["Hello","world!"]

--3d1ba137-ea6a-40d9-8e34-1b8812394baa

Content-Type: application/http; msgtype=response

HTTP/1.1 404 Not Found

Content-Type: application/json; charset=utf-8

{"Message":"No HTTP resource was found that matches the request URI 'http://localhost/foo/bar'."}

--3d1ba137-ea6a-40d9-8e34-1b8812394baa

Content-Type: application/http; msgtype=response

WebApi2官网学习记录---批量处理HTTP Message的更多相关文章

  1. WebApi2官网学习记录---Cookie

    Cookie的几个参数: Domain.Path.Expires.Max-Age 如果Expires与Max-Age都存在,Max-Age优先级高,如果都没有设置cookie会在会话结束后删除cook ...

  2. WebApi2官网学习记录---Html Form Data

    HTML Forms概述 <form action="api/values" method="post"> 默认的method是GET,如果使用GE ...

  3. WebApi2官网学习记录--HttpClient Message Handlers

    在客户端,HttpClient使用message handle处理request.默认的handler是HttpClientHandler,用来发送请求和获取response从服务端.可以在clien ...

  4. WebApi2官网学习记录--HTTP Message Handlers

    Message Handlers是一个接收HTTP Request返回HTTP Response的类,继承自HttpMessageHandler 通常,一些列的message handler被链接到一 ...

  5. WebApi2官网学习记录---Configuring

    Configuration Settings WebAPI中的configuration settings定义在HttpConfiguration中.有一下成员: DependencyResolver ...

  6. WebApi2官网学习记录--- Authentication与Authorization

    Authentication(认证)   WebAPI中的认证既可以使用HttpModel也可以使用HTTP message handler,具体使用哪个可以参考一下依据: 一个HttpModel可以 ...

  7. WebApi2官网学习记录---单元测试

    如果没有对应的web api模板,首先使用nuget进行安装 例子1: ProductController 是以硬编码的方式使用StoreAppContext类的实例,可以使用依赖注入模式,在外部指定 ...

  8. WebApi2官网学习记录---Tracing

    安装追踪用的包 Install-Package Microsoft.AspNet.WebApi.Tracing Update-Package Microsoft.AspNet.WebApi.WebHo ...

  9. WebApi2官网学习记录---异常处理

    HttpResponseException 当WebAPI的控制器抛出一个未捕获的异常时,默认情况下,大多数异常被转为status code为500的http response即服务端错误. Http ...

随机推荐

  1. 【socket.io研究】1.官网的一些相关说明,概述

    socket.io是什么? 官网的解释是一个实时的,基于事件的通讯框架,可以再各个平台上运行,关注于效率和速度. 在javascript,ios,android,java中都实现了,可以很好的实现实时 ...

  2. SqlServer死锁与阻塞检测脚本

    IF EXISTS (SELECT * FROM sysobjects WHERE [name] = 'sp_Lock_Scan') DROP PROCEDURE sp_Lock_Scan GO CR ...

  3. js判断一个变量是否为数组的解决方案

    前端开发中,在做项目的时候,我们经常需要对一个变量进行数组类型的判断,当然即使你暂时没遇到,但是这个问题也是大家去面试时的高频问题,有必要拿出来说一说. 大家都知道js中可以使用typeof来判断变量 ...

  4. php代码生成二维码

    //引用范例 1 public function index() { 2 echo "<img src='http://qr.liantu.com/api.php?bg=f3f3f3& ...

  5. win7安装memcached

    根据公司业务需求,需要用memcache缓存,正好接触一下,在win7下配置安装: 1. 下载memcache的windows稳定版,解压放某个盘下面,比如在c:\memcached 2. 在终端(也 ...

  6. 微信分享jsdk接口

    HTML文件 <!DOCTYPE html><html><head> <meta charset="utf-8"> <titl ...

  7. hdu 2019

    Problem Description 有n(n<=100)个整数,已经按照从小到大顺序排列好,现在另外给一个整数x,请将该数插入到序列中,并使新的序列仍然有序.   Input 输入数据包含多 ...

  8. BZOJ 2115: [Wc2011] Xor

    2115: [Wc2011] Xor Time Limit: 10 Sec  Memory Limit: 259 MB Submit: 2794  Solved: 1184 [Submit][Stat ...

  9. SSH登陆错误 WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!

    今天遇到问题,删除文件即搞定!! ~~~~~~~~~~~~~~ SSH登陆错误 WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!   Connectio ...

  10. QQ截图时窗口自动识别的原理(WindowFromPoint, ChildWindowFromPoint, ChildWindowFromPointEx,RealChildWindowFromPoint)

    新版的QQ在截图时加入了窗口自动识别的功能,能根据鼠标的位置自动画出下面窗口的轮廓.今天有人在论坛上问起这个问题,下面我们来探讨这个功能的实现原理. 首先我们要明白截图软件的基本原理,截图时实际上是新 ...