原文: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. C#生成高清缩略图

    /// <SUMMARY> /// 为图片生成缩略图 /// </SUMMARY> /// <PARAM name="phyPath">原图片的 ...

  2. 初学Java ssh之Spring 第一篇

    之前虽然毕业前实习的工作是使用的C# .NET语言,但是,毕业后还是果断应聘Java.虽然自己对Java的理解不如C#深入,只是对基础知识比较熟悉,但还是义无返顾了··· 虽然应聘经历比较坎坷,但最终 ...

  3. ZOJ3556 How Many Sets I(容斥)

    转载请注明出处: http://www.cnblogs.com/fraud/          ——by fraud How Many Sets I Time Limit: 2 Seconds     ...

  4. uva 10929 - You can say 11

    #include <cstdio> using namespace std; ]; int main() { while(gets(in)) { ] == ] == ) break; ; ...

  5. CentOS 7 之找回失落的ifconfig

    自5号凌晨安装完centos7 minimal之后,一直没有机会时间(懒惰)来玩玩这个,实在惭愧,今天是周六,天下着小雨,所以收拾一下心情来学学一下这个系统: 开机登陆进去,想看看ip多少,于是很自然 ...

  6. CentOS(Linux) - SVN使用笔记(二) - 创建SVN仓库及下载仓库到本地

    1.安装: 参考文章 CentOS(Linux) - SVN使用笔记(一) -  安装SVN过程及开启和关闭svn服务指令 2.创建仓库 #创建项目目录 mkdir /usr/svn#进入目录cd / ...

  7. javascript改变背景/字体颜色(Through the javascript to change the background and font color)

    鼠标移动到.移出DIV时修改DIV的颜色: 1.Change the font and Div background color--function <div style="width ...

  8. javascript版QQ在线聊天挂件

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

  9. php 之 注册审核(0523)

    当注册后,先将信息保存到session,通过审核后才会添加到数据库中, 审核通过后状态变为已通过,这时添加到数据库中的信息进行登录.若发现此用户的不良行为,可以撤销通过. 注册页面: <!DOC ...

  10. 《图解CSS3》——笔记(一)

    作者:大漠 勘误:http://www.w3cplus.com/book-comment.html 2014年7月14日14:46:35 第一章  揭开CSS3的面纱 1.1  什么是CSS3 CSS ...