How to use ipp (internet printing protocol) with HTTP to print a file in android?

I want to print a file from an android application. For this, after searching on google, I found useful information that I would have to use IPP (Internet Printing Protocol) with HTTP. And I'm new to ipp, but I worked with HTTP. So can someone help me for the same? Can someone give me useful information or links? Thanks in advance?

+5
source share
2 answers

You need to make an HTTP PUT request with some special features, you should:

  • use port 631 instead of 80 (unless explicitly stated).
  • URL- (.. ipp:// => http://).
  • IPP/1.1.
  • .

OTOH, /, , , RFC. , , , , URI , .

+1

All Articles