Создание документа XPS из веб-приложения

Я пытался сгенерировать многостраничный документ XPS из веб-приложения и пытался транслировать этот клик по кнопке.

открытый класс Class1 {

protected void btnGenerateLetter_OnClick(object sender, EventArgs e)
{
    try
    {
        string sid = Request.Form["id"];
        byte[] bytes = FlowDocumentToXPS(GenerateLetter(), 640, 800);
        Response.Clear();
        Response.ContentType = "application/vnd.ms-xpsdocument";
        Response.AddHeader("Content-Disposition", "attachment; filename=document.xps");
        Response.OutputStream.Write(bytes, 0, bytes.Length);
        Response.Flush();
        Response.Close();
    }
    catch (Exception ex)
    {
    }

}

private FlowDocument GenerateLetter()
{
    FlowDocument flowDocument = new FlowDocument();

    string Header = "Test Header Message";
    string Body = "Content goes here";
    string Footer = "Footer Text";

    for (int i = 0; i < 3; i++)
    {
        Paragraph header = new Paragraph();
        header.Margin = new System.Windows.Thickness(250, 100, 250, 10);
        header.BreakPageBefore = true;

        header.Inlines.Add(new Run(Header));
        header.Inlines.Add(new LineBreak());
        header.Inlines.Add(new LineBreak());
        header.Inlines.Add(new LineBreak());

        Paragraph body = new Paragraph();
        body.Inlines.Add(new Run(Body));
        body.Inlines.Add(new LineBreak());
        body.Inlines.Add(new LineBreak());

        Paragraph footer = new Paragraph();
        footer.Inlines.Add(new Run(Footer));

        flowDocument.Blocks.Add(header);
        flowDocument.Blocks.Add(body);
        flowDocument.Blocks.Add(footer);
    }
    return flowDocument;
}

public static byte[] FlowDocumentToXPS(FlowDocument flowDocument, int width, int height)
{
    MemoryStream stream = new MemoryStream();
    // create a package
    using (Package package = Package.Open(stream, FileMode.CreateNew))
    {
        // create an empty XPS document   
        using (XpsDocument xpsDoc = new XpsDocument(package, CompressionOption.NotCompressed))
        {
            // create a serialization manager
            XpsSerializationManager rsm = new XpsSerializationManager(new XpsPackagingPolicy(xpsDoc), false);
            // retrieve document paginator
            DocumentPaginator paginator = ((IDocumentPaginatorSource)flowDocument).DocumentPaginator;
            // set page size
            paginator.PageSize = new System.Windows.Size(width, height);
            // save as XPS
            rsm.SaveAsXaml(paginator);
            rsm.Commit();
        }
        return stream.ToArray();
    }
}

}

Это нормально работает в среде разработки. Но эта ошибка возникает при развертывании на другом компьютере (IIS6).

URI запуска: C:\Documents and Settings\050583b.syn\Desktop\document.xps Идентификатор приложения:

System.IO.FileFormatException: файл содержит поврежденные данные. по адресу MS.Internal.IO.Zip.ZipIOEndOfCentralDirectoryBlock..IO.Zip.ZipArchive..ctor(Поток archiveStream, режим FileMode, доступ FileAccess, логическая потоковая передача, Boolean ownStream) в MS.Internal.IO.Zip.ZipArchive.OpenOnStream(потоковый поток, режим FileMode, доступ FileAccess, логическая потоковая передача) в System.IO.Packaging.ZipPackage..ctor (Stream s, режим FileMode, доступ FileAccess, потоковая передача Boolean) в System.IO.Packaging.Package.Open(потоковый поток, packageMode FileMode, FileAccess packageAccess, потоковая передача Boolean) в System. IO.Packaging.Package.Open (Поток потока) в MS.Internal.Documents.Application.TransactionalPackage..ctor(Поток оригинала) в MS.Internal.Documents.Application.PackageController.MS.Internal.Documents.Application.IDocumentController.Open(Документ документа) на MS.Internal.Documents.Application.DocumentManager.DispatchOpen(контроллер IDocumentController, документ документа) в MS.Internal.Documents.Application.DocumentManager.<> C__DisplayClass6.b__5(контроллер IDocumentController, предмет документа) в MS.Internal.Documents.Application.ChainOf 2.Dispatch(Action action, S subject) at MS.Internal.Documents.Application.DocumentManager.<>c__DisplayClass6.<OrderByLeastDependent>b__4(Document member) at MS.Internal.Documents.Application.ChainOfDependencies1.OrderByLeastDependent(член T, действие Action) в MS.Internal.Documents.Application.DocumentManager.OrderByLeastDependent(действие DispatchDelegate, документ документа) в MS.Internal.Documents.Application.DocumentManager.Open(документ документа) в MS.Internal.AppModel.ApplicationProxyInternal.InitContainer() в MS.Internal.AppModel.ApplicationProxyInternal.Run(InitData initData)


1 ответ

Решение

Я предполагаю, что проблема в том, что байты не полностью записываются в ответ. Попробуйте следующее, и, надеюсь, это должно работать.

HttpContext context = HttpContext.Current;
context.Response.Clear(); 
context.Response.ContentType = "application/vnd.ms-xpsdocument";
context.Response.AppendHeader("Content-Disposition", "attachment; filename=document.xps");
context.Response.End();
Другие вопросы по тегам