Re: printing
Re: printing
- Subject: Re: printing
- From: email@hidden
- Date: Fri, 16 Dec 2005 09:16:18 +1300
Hello;
I'm trying to use JIPSI, and have moderate success.
I got a bit frustrated (read : very frustrated) trying to get IPP
printing going so I wrote my own IPP client code -- this is embodied
in "LEIPPPrintJob" which you can download from my website (http://
www.lindesay.co.nz/ -- see "webobjects") and use. The PDF overview
carries an outline of how to use it. It is very simple ...
LEIPPPrintJob pj = new LEIPPPrintJob();
pj.setIPPHost("wellington.foo.co.nz");
pj.setPrinterPath("/printers/volumeprinter");
pj.setData(bytes);
pj.setJobName("Die Dokument wird bald ausgedruckt!");
try { pj.deliver(); }
catch(LEException lee)
{ /* handle the exception nicely */ }
I use it in a production system doing quite large print runs, but it
may or may not be suitable for your purpose.
cheers.
___
Andrew Lindesay
www.lindesay.co.nz
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden