将可选的gzip压缩添加到自托管WCF服务

时间:2012-07-24 16:14:01

标签: wcf rest gzip custom-attributes

如何为自我托管的WCF服务添加可选的gzip压缩?我正在使用这个senario WebHttpBinding。我想检查Accept标头是否包含字符串gzip并压缩而不是内容。

我想使用自定义属性。到目前为止,我使用自定义属性允许我在XML和JSON输出之间切换,但我现在不知道如何压缩输出。

在我的编码器切换属性中,我实现了IDispatchMessageFormatter接口以根据需要更改XmlObjectSerializer。但是我并没有解释如何生成输出来修改它。

如果有人可以指出我可能的解决方案,那就太好了。

1 个答案:

答案 0 :(得分:4)

这不是属性,但它是压缩WCF服务响应的基本代码,如果需要可以包装到属性中。

public static void CompressResponseStream(HttpContext context = null)
{
    if (context == null)
        context = HttpContext.Current;

    string encodings = context.Request.Headers.Get("Accept-Encoding");

    if (!string.IsNullOrEmpty(encodings))
    {
        encodings = encodings.ToLowerInvariant();

        if (encodings.Contains("deflate"))
        {
            context.Response.Filter = new DeflateStream(context.Response.Filter, CompressionMode.Compress);
            context.Response.AppendHeader("Content-Encoding", "deflate");
            context.Response.AppendHeader("X-CompressResponseStream", "deflate");
        }
        else if (encodings.Contains("gzip"))
        {
            context.Response.Filter = new GZipStream(context.Response.Filter, CompressionMode.Compress);
            context.Response.AppendHeader("Content-Encoding", "gzip");
            context.Response.AppendHeader("X-CompressResponseStream", "gzip");
        }
        else
        {
            context.Response.AppendHeader("X-CompressResponseStream", "no-known-accept");
        }
    }
}

[编辑]发表评论:

只需在Web服务操作的主体中的任何位置调用它,因为它在响应上设置属性:

[OperationContract]
public ReturnType GetInformation(...) {
    // do some stuff
    CompressResponseStream();
}