I want to print file from android application.For the same , after searching on google,I found some useful information that i will have to use IPP (Internet Printing Protocol) with HTTP. And I am new to ipp but i have worked with HTTP. So can anybody help me for the same ? Can anybody give me some useful information OR links? Thanks in advance ?
How to use ipp(Internet Printing Protocol) with HTTP to print file in android?
11.7k Views Asked by Ramesh Solanki At
3
There are 3 best solutions below
1

You can look at this sample http://code.google.com/p/jspi/source/browse/trunk/jspi/src/main/java/de/lohndirekt/print/examples/SimpleDocExample.java. It is a Java library for IPP.
0

Using ipp-client-kotlin printing a file can be implemented like this:
IppPrinter("ipp://colorjet.local/ipp/printer")
.printJob(File("A4-blank.pdf"))
.waitForTermination()
You need to make an HTTP PUT request with some special features, you must:
ipp:// => http://
).IPP/1.1
.OTOH, the request/response format used in the body is binary, so you should really really read the RFC. Besides that, it's quite simple, all you need is job and printer URIs, and then you just send properly encoded data.