Jump to content

XML-binary Optimized Packaging: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
m →‎Usage in SOAP Web services: <source lang="email">
m Task 70: Update syntaxhighlight tags - remove use of deprecated <source> tags
 
Line 35: Line 35:
For example:
For example:
{{pre|
{{pre|
<source lang="email">
<syntaxhighlight lang="email">
MIME-Version: 1.0
MIME-Version: 1.0
Content-Type: Multipart/Related;boundary=MIME_boundary;
Content-Type: Multipart/Related;boundary=MIME_boundary;
Line 41: Line 41:
--MIME_boundary
--MIME_boundary
Content-Type: application/xop+xml;
Content-Type: application/xop+xml;
</source>...
</syntaxhighlight>...
<source lang="xml">
<syntaxhighlight lang="xml">
<soap:Envelope> ...
<soap:Envelope> ...
<soap:Body> ...
<soap:Body> ...
Line 48: Line 48:
<xop:Include xmlns:xop="http://www.w3.org/2004/08/xop/include"
<xop:Include xmlns:xop="http://www.w3.org/2004/08/xop/include"
href="cid:http://example.org/me.png"/></m:photo>
href="cid:http://example.org/me.png"/></m:photo>
</source>...
</syntaxhighlight>...
<source lang="email">
<syntaxhighlight lang="email">
--MIME_boundary
--MIME_boundary
Content-Type: image/png
Content-Type: image/png
Content-Transfer-Encoding: binary
Content-Transfer-Encoding: binary
Content-ID: <http://example.org/me.png>
Content-ID: <http://example.org/me.png>
</source>// binary octets for png
</syntaxhighlight>// binary octets for png
}}
}}



Latest revision as of 19:03, 11 May 2020

XML-binary Optimized Packaging (XOP) is a mechanism defined for the serialization of XML Information Sets (infosets) that contain binary data, as well as deserialization back into the XML Information Set.

Benefits

[edit]

XOP allows the binary data part of an XML Infoset to be serialized without going through the XML serializer. The XML serialization of an XML Infoset is text based, so any binary data will need to be encoded using base64. Using XOP avoids this by extracting the binary data out of the XML Infoset so that the XML Infoset does not contain binary data and the binary data can be serialized differently.

Therefore, XOP can reduce the size of the serialization (since base64 encoding has approximately a 33% size overhead) and (depending on how it is implemented) might allow processing efficiencies. This size increase results in extra resources needed to transmit or store the data.

Costs

[edit]

XOP introduces another level of processing. Therefore, it introduces extra complexity and processing overheads.

The representation of the XOP packages introduces some overhead. These are negligible when the binary data is large, but could be significant if the binary data is small.

Operation

[edit]

XOP operates on a single XML Infoset.

The binary parts of the original XML infoset are extracted out, leaving an "XOP Infoset" (which is essentially the original XML Infoset with the binary parts replaced by external references). The references in the XOP Infoset are represented using the "xop:Include" element. The XOP Infoset plus the extracted content can be serialized into a representation called the "XOP Package". The XOP Package can be sent or stored.

To reconstitute the XML Infoset, the XOP Package is deserialized into the XOP Infoset plus the extracted content, and then the extracted content is put back into the XML Infoset.

XOP Packages

[edit]

XOP can be used with a number of different packaging mechanisms. A packaging mechanism defines how the XOP Infoset and the binary chunks are represented.

The XOP specification defines how MIME can be used as a packaging mechanism. When used with MIME, the XOP Infoset is represented as XML in the root MIME part, and the binary chunks are represented in the other MIME parts. Those other MIME parts can be serialized as binary data, avoiding the need to base64 encode them if they were left inside the XML Infoset.

XOP does not mandate the use of the MIME packaging mechanism, so other packaging mechanisms could be used.

Usage in SOAP Web services

[edit]

The MIME packaging mechanism is the most widely used, since XOP is usually used to represent SOAP messages with MTOM.

For example:

MIME-Version: 1.0
Content-Type: Multipart/Related;boundary=MIME_boundary;
...
--MIME_boundary
Content-Type: application/xop+xml;
...
<soap:Envelope> ...
 <soap:Body> ...
     <m:photo xmlmime:contentType="image/png">
       <xop:Include xmlns:xop="http://www.w3.org/2004/08/xop/include" 
          href="cid:http://example.org/me.png"/></m:photo>
...
--MIME_boundary
Content-Type: image/png
Content-Transfer-Encoding: binary
Content-ID: <http://example.org/me.png>
// binary octets for png

See also

[edit]
  • MTOM (Message Transmission Optimization Mechanism)

References

[edit]
[edit]