When printing a pdf with Gembox.Pdf in C# the documentName in the print queue is always 'XPS Document'

790 Views Asked by At

I am trying to print a pdf document using Gembox.Pdf in C# (.NET Framework 4.8). This is the code I use:

public void PrintPdf(string fileToPrint, string printerName, string jobName)
    {
      ComponentInfo.SetLicense("FREE-LIMITED-KEY");
      using (var document = PdfDocument.Load(fileToPrint))
      {
        document.Print(printerName, new PrintOptions
        {
          DocumentName = jobName
        });
      }
    }

It doesn't matter what I pass as jobName, when I look at the print queue I always see Xps Document. I am using the free version of Gembox.Pdf for now.

print queue

I already reached out to the Gembox.Pdf team and posted on the forum of Gembox but I have received no response so far.

2

There are 2 best solutions below

7
On BEST ANSWER

This issue was resolved with this latest bugfix version:
https://www.gemboxsoftware.com/pdf/nightlybuilds/GBA15v1156.zip

Or this latest pre-released NuGet package:
Install-Package GemBox.Pdf -Version 15.0.1156-hotfix

0
On

I had a conversation with a support agent at Gembox.Pdf and it is not possible to set the DocumentName when printing to reflect this in the queue (even if the documentation says otherwise). The response of their support Agent:

Unfortunately, this is currently not possible to achieve.

You see, in the past, I've tried doing it but found out that there is no stable solution for it in WPF.

The closest solution that I got was with "PrintSystemJobInfo.JobName" and "JobName.Commit", but it failed on more printers than it succeeded.

I'm afraid that in order to resolve these issues, we'll need to replace System.Printing with something else (like GDI+ implementation from System.Drawing.Printing or some other alternative).

We have an internal support ticket for this and I have added your report to it as well.

However, please note that this re-factoring requires quite a large time investment, which is why unfortunately, it won't be done any time soon.

I was going to use this functionality to keep track of the status of my documents while printing but this is not possible according to them.

I see now, I'm afraid there is no way to do this.

The print method basically calls the XpsDocumentWriter.Write(DocumentPaginator) which doesn't provide any feedback.

So yes, you would need to check the jobs.

But unfortunately as mentioned before, the PrintSystemJobInfo.JobName doesn't work consistently which is why we don't have a solution for this.

So I won't be able to use Gembox.Pdf is the conclusion. Here is the full conversation.