Questions tagged [ipp-protocol]

Internet Printing Protocol, a protocol to print files on Internet/Intranet printers

Internet Printing Protocol is a protocol to print files on Internet/Intranet printers https://en.wikipedia.org/wiki/Internet_Printing_Protocol

31 questions
2
votes
1 answer

Print a doc on specific printer using JPS( java print service)

I want to print a document from a specific printer(standard Alone Program). Input: IP address, printer name(Using Jdk 1.6) I have followed the below URL Print to specific printer (IPP URI) in Java But I did not find IppPrintService class in…
srikanth
  • 103
  • 3
  • 8
2
votes
2 answers

Bonjour(IPP) vs Jetdirect-Socket Printer

I am trying to use my android phone as a printer. I am using ServerSocket to receive the document to be printed. If I add my phone as IP printer by providing IP address and port and select Generic Postscript Printer, I am able to receive the file…
Zaartha
  • 1,106
  • 9
  • 25
2
votes
3 answers

Internet Printing Protocol (IPP) for nodejs

I am trying print the pdf file in my local using printer. This is a code, tried to print. fs.readFile('documents/AccountStatement.pdf', function(err, data) { if (err) throw err; var printer =…
R J.
  • 1,522
  • 10
  • 25
  • 40
1
vote
1 answer

Error thrown while printing to IPP printer in android using Cups4j

I'm trying to print to an IPP printer installed on a linux machine using Cups4j from android. Here's the code, I more or less just copied what they have written on their github page. ByteArrayOutputStream os = stvoriRacun(narudzba, djelatnik,…
Defranz
  • 11
  • 2
1
vote
1 answer

Is PrinterUri attribute ignored by Java PrintService?

I'm using the following code in order to send a print job to a specific printer: PrintServiceAttributeSet aset = new HashPrintServiceAttributeSet(); try { aset.add(new PrinterURI(new URI("ipp://hostName/printerName"))); }…
gamadon
  • 31
  • 6
1
vote
1 answer

How to validate Internet Printing Protocol (IPP)?

I want to validate an IPP port for instance I has IPP like this http://xxx.xxx.xxx.xxx:631/ipp and similar way I want to validate https://xxx.xxx.xxx.xxx/ipp .Are there any API's exist to validate IPP and IPP-SSL if exists please let me know. If…
Siva
  • 1,281
  • 2
  • 19
  • 41
1
vote
1 answer

How printing HTML document via IPP protocol?

So, I write PHP component, that can print documents via IPP (Internet Printing Protocol). But I can not print HTML document (text|html - mimetype) correct. Printer has printed this type as RAW. May be somebody give example of correct request (header…
1
vote
1 answer

Communicate with Java to TLS-encrypted CUPS print server

I'm trying to communicate with a CUPS print-server that has "Encryption Required" set for all its connections. This means that, when you try to establish a connection to it, it asks to upgrade the connection to TLS-encrypted one, and neither Cups4j…
AlexK
  • 11
  • 1
0
votes
1 answer

How iOS detects network printer automatically

POS systems mostly can detect thermal printers automatically, as far as I know there are only two ways for an installed application on ios to do that, either by faking it as an Airprint or going with IPP protocol. Since it mostly matters for those…
fafa92
  • 143
  • 1
  • 12
0
votes
1 answer

How to print remote from Linux Server to Windows Printer Server

Now I have the need to print a document from RHEL server to a Windows Printer Server, the protocol to be use is IPP. The reason why protocol IPP is because on Windows Server 2012, LPD and LPR Services are deprecated, see…
OscarRP
  • 85
  • 2
  • 10
0
votes
1 answer

Is it possible to obtain file path from IPP headers?

I writeing printing web application which simulate printer behavior. It uses IPP protocol to receive document within printing request. I can obtain some information about print job from IPP attribute code 0x42 in IPP headers: filename - full file…
Sergei Bubenshchikov
  • 5,275
  • 3
  • 33
  • 60
0
votes
1 answer

Internet Printing Protocol (IPP) get-server-version request?

I am writing a python IPP( Internet Printing Protocol) server. If the client send a get-server-version request, how does the server response? What is the format? Any document describes this? thanks.
0xBigBan
  • 31
  • 3
0
votes
2 answers

Has anyone written out the grammar in BNF for the Internet Printing Protocol Collections record described in RFC3382?

I am having a little trouble generating the Collection records described in Internet Printing Protocol definition RFC3382. Has anyone written out the grammar in BNF?
Robert R Evans
  • 177
  • 1
  • 11
0
votes
2 answers

iOS printing with IPP Printer

Currently, I can search my printer with Bonjour/SNMP protocol by NSNetServiceBrowser NSNetService Now I want to print my document by IPP protocol. Could you please tell me way to print with IPP in iOS?
Nam Vu
  • 5,669
  • 7
  • 58
  • 90
0
votes
1 answer

Is there a way to send a print task to an IPP-enabled network printer using http?

I'm working on an Android print service application which is supposed to allow the user to do the following: browse through the phone's internal storage and send the selected file to an IPP-enabled printer to print. I've combed the net for the past…