1. HTTP 메세지에서 이진 데이터와 텍스트 형태텍스트 기반 ( MIME TYPE - text/plain )POST /example HTTP/1.1Host: example.comContent-Type: text/plainContent-Length: 13---- CLRF 빈줄 공백 --------Hello 이진데이터 ( MIME TYPE - application/octet-stream )POST /example HTTP/1.1Host: example.comContent-Type: application/octet-streamContent-Length: 5---- CLRF 빈줄 공백 --------01001000 01100101 01101100 01101100 01101111application/octet-..