使用WCF服务打印信息

时间:2013-03-08 22:48:40

标签: c# winforms wcf printing

我是webservices的新手,特别是WCF的服务,但我正在处理它。我的情况如下:我有一个调用WCF服务的客户端应用程序,以及WCF服务。一切都正常,但我现在需要打印,这就是我被困的地方。我想要的是客户端应用程序调用WCF服务打印发票。我想过为他们使用.rdlc报告。但我不知道如何将它们传递给客户端应用程序。正如我所说,我需要的是传递所有准备打印的信息,因此客户端应用程序无法改变任何内容。只需打印。

我需要一些帮助或建议如何实现这一目标。如果没有别的办法,我可以在客户端应用程序中创建rdlc,但我真的想避免这种情况。

以防万一,我的客户端应用程序是一个Winform应用程序,我使用的是C#,Entity framework 4和.NET 4.

1 个答案:

答案 0 :(得分:1)

您可以让您的服务将RDLC转换为PDF并将PDF作为字节数组发送给您的WCF客户端。然后,客户端可以将字节数组保存为临时文件目录中的.pdf文件,然后要求操作系统启动注册处理PDF的默认应用程序(acrobat,...)。

作为示例,这是我在MVVM视图模型中使用的方法,供WPF客户端下载,保存和启动PDF报告。服务器发送ReportDTO,其中Report为字节数组,FileName(报告名称扩展名为“.pdf”):

[DataContract(Name="ReportDTO", Namespace="http://chasmx/2013/2")]
public sealed class ReportDTO
{
    /// <summary>
    /// Filename to save the report attached in <see cref="@Report"/> under.
    /// </summary>
    [DataMember]
    public String FileName { get; set; }

    /// <summary>
    /// Report as a byte array.
    /// </summary>
    [DataMember]
    public byte[] @Report { get; set; }

    /// <summary>
    /// Mimetype of the report attached in <see cref="@Report"/>. This can be used to launch the application registered for this mime type to view the saved report.
    /// </summary>
    [DataMember]
    public String MimeType { get; set; }
}

public void ViewReport()
{
    ServiceContracts.DataContract.ReportDTO report;
    String filename;

    this.Cursor = Cursors.Wait;
    try
    {
        // Download the report.
        report = _reportService.GetReport(this.SelectedReport.ID);

        // Save the report in the temporary directory
        filename = Path.Combine(Path.GetTempPath(), report.FileName);
        try
        {
            File.WriteAllBytes(filename, report.Report);
        }
        catch (Exception e)
        {
            string detailMessage = "There was a problem saving the report as '" + filename + "': " + e.Message;
            _userInteractionService.AskUser(String.Format("Saving report to local disk failed."), detailMessage, MessageBoxButtons.OK, MessageBoxImage.Error);
            return;
        }
    }
    finally
    {
        this.Cursor = null;
    }

    System.Diagnostics.Process.Start(filename); // The OS will figure out which app to open the file with.
}

这使您可以在服务器上保留所有报告定义,并将WCF接口变为客户端,直至提供PDF字节数组。