2

我尝试实现自定义格式化程序以从 ServiceStack 返回 PDF 文档。不过,没有太多的运气。我查看了示例并且几乎复制了 VCard 示例,但将其替换为我的代码。我的格式化程序看起来像这样:

public class PdfFormatter
{
    private const string PdfFormatContentType = "application/pdf";

    public static void Register(IAppHost appHost)
    {
        appHost.ContentTypeFilters.Register(PdfFormatContentType, SerializeToStream, (t, s) => { throw new NotImplementedException(); });
    }

    public static void SerializeToStream(IRequestContext requestcontext, object dto, Stream outputstream)
    {
        ...
    } 
}

我已经从我的 AppHost 调用了 Register,并且按预期添加了 Content Type Filter。我的问题是仅在访问我的方法的元数据时才调用 SerializeToStream。当我在 servicestack 上调用具体方法时,会返回一个 HTML 响应。

调用的 URL 是: http: //mydomain.com/api/pdf/reply/GenerateDocument

请求标头如下所示:

Accept:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Charset:ISO-8859-1,utf-8;q=0.7,*;q=0.3
Accept-Encoding:gzip,deflate,sdch
Accept-Language:en-US,en;q=0.8,da;q=0.6
Cache-Control:max-age=0
Connection:keep-alive
Host:mydomain.com
User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.64 Safari/537.31

响应标头如下所示:

Cache-Control:private
Connection:Close
Content-Length:46
Content-Type:application/pdf; charset=utf-8
Date:Thu, 16 May 2013 19:59:27 GMT
Server:ASP.NET Development Server/11.0.0.0
X-AspNet-Version:4.0.30319
X-Powered-By:ServiceStack/3,945 Win32NT/.NET

响应实际上是 PDF,但调试器不会在 SerializeToStream 中中断。

任何帮助,将不胜感激。

4

1 回答 1

0

注册 Content-Type 后,客户端仍然需要告诉 ServiceStack 它想要 PDF 内容类型。

您可以在网址上执行此操作:

http://example.org/myservice?format=pdf

通过预定义的路线

http://example.org/pdf/reply/GenerateDocument

或者在 HTTP Accept标头中,例如:

GET /myservice
Host: example.org
Accept: application/pdf
于 2013-05-16T19:41:29.267 回答