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 protected])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to