zur Startseite
SourceForge

Jipsi Quickstart - Drucksoftware im XML-Druck für alle Personalabrechnungen.

Dokumenten-Mangement mit Archivierung für Lohnabrechnungen.

  1. Be sure to have a JDK 1.4 or higher installed !
  2. Put jipsi.jar onto your classpath.
  3. To use Jipsi see the following example:
								
   // create an instance of the IPPPrintServiceLookup
   PrintServiceLookup lookup = 
   new IppPrintServiceLookup(
       new java.net.URI("ipp://127.0.0.1:631"),
       "username",
       "password");
								
   // get all services from lookup
   PrintService[] services = lookup.getPrintServices();
  1. Use the services as documented in JavaTMPrint Service API.
  1. Alternatively vou can register your service. This way you can use different implementations at the same time.
								
   // create an instance of the IPPPrintServiceLookup
   PrintServiceLookup lookup = 
   new IppPrintServiceLookup(
       new java.net.URI("ipp://127.0.0.1:631"),
       "username",
       "password");
								
   // register your lookup instance
   PrintServiceLookup.registerServiceProvider(lookup);
								
   // get all services from lookup
   PrintService[] services =
      PrintServiceLookup.lookupPrintServices(null, null);
  1. Use the services as documented in JavaTMPrint Service API.
  1. Jipsi adds several Attributes to the API. Currently they are not properly documented. For an overview see: