I'm trying to find a solution to create a print server that Windows users can print to and format what they print to XML.
I found this python script: http://newcenturycomputers.net/projects/rawprintserver.html (download on right hand side; vertically). Upon installing and testing it out, it seems to be getting the print job. However, every time I try to print to it, it just logs "Error: lpr returns 100" and exits.
Here is the full log:
[2011/11/08 11:51:51] Raw Print Server Startup: PID = 16998
[2011/11/08 11:51:51] Starting Printer <dotmatrix> on port 9100
[2011/11/08 11:51:51] Starting Printer <dotmatrix> on port 9101
[2011/11/08 11:52:01] Receiving Job from ('192.168.1.19', 49448) for Printer <dotmatrix> (Spool File RawPrintJob00001.prn)
[2011/11/08 11:52:01] Printer <dotmatrix>: Printing Job RawPrintJob00001.prn
[2011/11/08 11:52:01] Error: lpr returns 100
I followed the readme to the letter so spool is in /var/tmp as opposed to cups spool, if that matters.
I don't see that error in any of the files, and looking for python error code 100 doesn't help.
Perhaps someone can let me know what that error means.. OR, perhaps a python guru could just take a cursory look at the code (small, ~6 files ~100 lines each) and let me know where I can tap into the output/whichermercallit so I can start learning how to work with XML in python :)
It doesn't seem to leave a prn file anywhere. Really, all I need is to generate a text file or somesuch from the print job which I can then modify. However, a more elegant solution is welcome (e.g. a way to modify the stream/job before writing to file).
Thanks.