Click here to Skip to main content
15,889,808 members
Articles / Programming Languages / C#

An LPR Client in C#

Rate me:
Please Sign up or sign in to vote.
4.34/5 (20 votes)
27 Dec 20063 min read 231K   8.5K   55   67
An article on printing with LPR in C#

screenshot of the demo application

Introduction

This article presents a printer class that supports the LPR print protocol in C#. With this class, it is possible to send a print file in ASCII, PostScript, PCL, etc., directly to a network printer or print server that communicates by means of the LPR (LPD) protocol. The printer class also implements the LPQ, the LPRM, and the Restart request.

Background

The LPR/LPD protocol is a 15 year old print protocol from the TCP/IP suite that is still important in the area of network printers and print servers. It is described in detail in RFC 1179. Augmented variations of the protocol exist, like LPRNG also known as LPR Next Generation.

In an application, I needed to send PostScript files to an LPD enabled printer. It was possible to use the command line lpr.exe which is included in Windows but I didn't want to be dependant on lpr.exe, so I searched for a free C# implementation of LPR. As I could not find one, it was time to build such a class myself.

How to Use the Code

The printer class is straightforward. The constructor is called with three parameters, the hostname, the queue name, and the username. As these parameters are reused again and again with every LPR and LPQ request, I decided to place them in the constructor. Just a choice.

To print a file, one only needs to call LPR with the filename as argument, and to get the content of the spool queue, just call LPQ. The boolean parameter of LPQ indicates a long or small listing. The output format of LPQ depends on the implementation of the LPD daemon in the printer, so there might be no difference.

So the core code to print a postscript file could look like:

C#
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
    LPD.Printer printer1 = 
         new LPD.Printer("saturnus","queue","rob");
    string fname = openFileDialog1.FileName;
    if (fname.EndsWith(".ps"))
    {
        printer1.LPR(fname);
        textBox1.Text = printer1.LPQ(false);
    }
    else
    {
        // display appropriate error message
        // ...
    }
}

Points of Interest

To use the printer class, one should have a network printer with an LPD daemon, or start the TCP/IP Print Service on a computer (print server). Then, you can send files to any Windows printer defined on the computer. Use the PC name as hostname and the name of the printer as queue name. Be aware that the name of the printers may not contain spaces as the LPR/LPD protocol uses spaces as separators.

LPR does not wait until the file is printed, it starts a thread in the background for every file. LPQ and LPRM do not use a background thread.

The Restart method seems not to be supported in the Windows LPD daemon as I get no acknowledgement. Nevertheless, I kept it in the code (use it at your own risk :).

Some things to improve the class include (no deadline):

  • improve error handling
  • implement status and some other properties
  • fix some todos in the code
  • overload LPR to print from a stream
  • call back when file prints (e.g. for progress indicator)
  • refactor ad fundum

History

  • 2006/12/24 - Version 1.06 - Added some comments, a status string, InternalQueueSize, and filesSend
  • 2006/12/24 - Version 1.03 - Added delete flag (thanks to Dion Slijp)
  • 2006/11/09 - Version 1.02 - Patched code with remarks of Karl Fleischmann
  • 2006/01/14 - Version 1.01 - Added host, queue + user name to demo
  • 2006/01/02 - Version 1.00 - Published on CodeProject
  • 2006/01/02 - Version 0.96 - Added Restart, fixed minor bugs, updated CP page
  • 2005/12/31 - Version 0.92 - Added WriteLog, added LPRM
  • 2005/12/30 - Version 0.90 - Refactoring protocode, writing initial CP page
  • 2005/??/?? - Started with the Printer class

Usage Rights

Everybody is allowed to use this code as long as you refer to the original work, and I would appreciate that enhancements are published at CodeProject too.

License

This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below. A list of licenses authors might use can be found here.


Written By
Web Developer
Netherlands Netherlands
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralUsing PCL to print Pin
vanhungit6-Apr-10 20:52
vanhungit6-Apr-10 20:52 
GeneralRe: Using PCL to print Pin
rob tillaart6-Apr-10 22:04
rob tillaart6-Apr-10 22:04 
GeneralPerformance tweaks Pin
Rowland Shaw14-Dec-09 4:15
Rowland Shaw14-Dec-09 4:15 
GeneralRe: Performance tweaks Pin
rob tillaart6-Apr-10 22:05
rob tillaart6-Apr-10 22:05 
GeneralLess naive implementation of GetJobId() Pin
Rowland Shaw14-Dec-09 4:06
Rowland Shaw14-Dec-09 4:06 
GeneralLPR failed after 10 jobs [modified] Pin
balu1234510-Oct-09 8:46
balu1234510-Oct-09 8:46 
GeneralRe: LPR failed after 10 jobs Pin
rob tillaart11-Oct-09 7:02
rob tillaart11-Oct-09 7:02 
GeneralRe: LPR failed after 10 jobs Pin
balu1234511-Oct-09 7:53
balu1234511-Oct-09 7:53 
Hi Rob,

Once Again I am very & very thankfull to you for replying towards my question...

Thanks sir....
Please find below answers ..,

1. What OS are you using to send the jobs?
ans) windows XP professional

2. What OS (device) is receiving the jobs?
ans) printserver is windows 2003 server
Printer is Fujixerox MFD(apoes model)

3. Is the error 100% repeatable?
ans)yes it is 100% repeatable

4. Did you try other "batch" sizes e.g. 10 25 50 instead of 100?
ans)yes for everything greater than 10 jobs has the same problem

5. Does it give the same error?
ans) yes

To my knowledge LPR will use 515 port...,so once 10 jobs were sent to LPR,then 515 is not ready to accept the new job...so it failed by giving the above error.

One way to solve this problem is,if there more than 10 jobs then i have to wait until one of them in first ten to be completed and then accomidate next job to lpr..like wise for all of them in batch...

but Iam not able to do this & Iam exactly using your code,no changes were made to it....please help me & throw me out of this problem


Thanks & regards
Balu
GeneralRe: LPR failed after 10 jobs Pin
rob tillaart13-Oct-09 6:48
rob tillaart13-Oct-09 6:48 
GeneralRe: LPR failed after 10 jobs Pin
balu1234523-Oct-09 7:36
balu1234523-Oct-09 7:36 
GeneralRe: LPR failed after 10 jobs Pin
rob tillaart23-Oct-09 21:42
rob tillaart23-Oct-09 21:42 
GeneralRe: LPR failed after 10 jobs Pin
balu123454-Nov-09 3:02
balu123454-Nov-09 3:02 
GeneralRe: LPR failed after 10 jobs Pin
rob tillaart4-Nov-09 10:43
rob tillaart4-Nov-09 10:43 
GeneralRe: LPR failed after 10 jobs Pin
mjohl21-Jan-11 2:33
mjohl21-Jan-11 2:33 
GeneralRe: LPQ ? Pin
rob tillaart21-Jan-11 4:27
rob tillaart21-Jan-11 4:27 
QuestionNot able to print PDF files with demo exe Pin
NEERBADA320-Apr-09 10:16
NEERBADA320-Apr-09 10:16 
AnswerRe: Not able to print PDF files with demo exe Pin
rob tillaart20-Apr-09 20:27
rob tillaart20-Apr-09 20:27 
GeneralRe: Not able to print PDF files with demo exe Pin
NEERBADA321-Apr-09 0:25
NEERBADA321-Apr-09 0:25 
GeneralRe: Not able to print PDF files with demo exe Pin
rob tillaart21-Apr-09 2:32
rob tillaart21-Apr-09 2:32 
GeneralRe: Not able to print PDF files with demo exe Pin
NEERBADA321-Apr-09 3:00
NEERBADA321-Apr-09 3:00 
GeneralRe: Not able to print PDF files with demo exe Pin
NEERBADA321-Apr-09 7:30
NEERBADA321-Apr-09 7:30 
GeneralRe: Not able to print PDF files with demo exe Pin
rob tillaart21-Apr-09 20:18
rob tillaart21-Apr-09 20:18 
GeneralRe: Not able to print PDF files with demo exe Pin
NEERBADA322-Apr-09 8:01
NEERBADA322-Apr-09 8:01 
GeneralRe: Not able to print PDF files with demo exe Pin
NEERBADA322-Apr-09 9:56
NEERBADA322-Apr-09 9:56 
GeneralRe: Not able to print PDF files with demo exe Pin
ddod9-Dec-11 10:43
ddod9-Dec-11 10:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.