Presentation layer

From Wikipedia, the free encyclopedia

In the seven-layer OSI model of computer networking, the presentation layer is layer 6 and serves as the data translator for the network.[2][3][4] It is sometimes called the syntax layer.[5]

Description[edit]

Within the service layering semantics of the OSI network architecture, the presentation layer responds to service requests from the application layer and issues service requests to the session layer through a unique presentation service access point (PSAP).[6]

The presentation layer ensures the information that the application layer of one system sends out is readable by the application layer of another system. On the sending system it is responsible for conversion to standard, transmittable formats.[7] On the receiving system it is responsible for the translation, formatting, and delivery of information for processing or display. [8] In theory, it relieves application layer protocols of concern regarding syntactical differences in data representation within the end-user systems. An example of a presentation service would be the conversion of an extended binary coded decimal interchange code (EBCDIC-coded) text computer file to an ASCII-coded file. If necessary, the presentation layer might be able to translate between multiple data formats using a common format.

In many widely used applications and protocols no distinction is actually made between the presentation and application layers. For example, HyperText Transfer Protocol (HTTP), generally regarded as an application-layer protocol, has presentation-layer aspects such as the ability to identify character encoding for proper conversion, which is then done in the application layer.

The presentation layer is the lowest layer at which application programmers consider data structure and presentation, instead of simply sending data in the form of datagrams or packets between hosts. This layer deals with issues of string representation - whether they use the Pascal method (an integer length field followed by the specified amount of bytes) or the C/C++ method (null-terminated strings, e.g. "thisisastring\0"). The idea is that the application layer should be able to point at the data to be moved, and the presentation layer will translate this to commands able to be understood by other applications and processes.

Serialization of complex data structures into flat byte-strings (using mechanisms such as TLV, XML or JSON) can be thought of as the key functionality of the presentation layer. Structure representation is normally standardized at this level, often by using XML or JSON. As well as simple pieces of data, like strings, more complicated things are standardized in this layer. Two common examples are 'objects' in object-oriented programming, and the exact way that streaming video is transmitted.

Encryption and Decryption are typically done at this level too,[9] although it can be done on the application, session, transport, or network layers, each having its own advantages and disadvantages. For example, when logging on to bank account sites the presentation layer will decrypt the data as it is received.[2]

Services[edit]

Protocols[edit]

Protocols sometimes considered at this level (though perhaps not strictly adhering to the OSI model) include:

See also[edit]

References[edit]

  1. ^ "X.225 : Information technology – Open Systems Interconnection – Connection-oriented Session protocol: Protocol specification". Archived from the original on February 1, 2021. Retrieved March 10, 2023.
  2. ^ a b Dean, Tamara (2010). Network+ Guide to Networks. Delmar. pp. 44–47. ISBN 978-1423902454.
  3. ^ a b c d e "Presentation Layer". Microsoft TechNet. Microsoft. Retrieved September 18, 2023.
  4. ^ Hodel, Brian (2023). "Presentation Layer". Beginning Microsoft Dataverse. Berkeley, CA: Apress. p. 133–174. doi:10.1007/978-1-4842-9334-8_5. ISBN 978-1-4842-9333-1. The presentation layer consists of various methods of presenting and interacting with your data.
  5. ^ Grigonis, Richard (2000). Computer telephony encyclopedia. CMP. p. 331. ISBN 9781578200450.
  6. ^ Hura, Gurdeep (2001). "Application Layer". Data and Computer Communications: Networking and Internetworking. CRC Press LLC. pp. 710–712. ISBN 9780849309281.
  7. ^ Hura, Gurdeep (2001). "Presentation Layer". Data and Computer Communications: Networking and Internetworking. CRC Press LLC. pp. 671–681. ISBN 9780849309281.
  8. ^ http://www.linfo.org/presentation_layer.html Linux Information Project
  9. ^ Knipp, Eric; Browne, Brian; Weaver, Woody; Baumrucker, C. Tate; Chaffin, Larry; Caesar, Jamie; Osipov, Vitaly; Danielyan, Edgar (2002). "Introduction to IP Network Security". Managing Cisco Network Security. Elsevier. p. 1–60. doi:10.1016/b978-193183656-2/50005-2. ISBN 978-1-931836-56-2. The presentation layer establishes the way in which information is presented, typically for display or printing. Data encryption and character set conversion (such as ASCII to EBCDIC) are usually associated with this layer.