text/plain
text
application/(.*+)?json
json
application/edn
edn
text/csv
csv
(application|text)/(.*+)?xml
xml
text/html
html
application/x-www-form-urlencoded
x-www-form-urlencoded
Content-Type
then the corresponding codec will be applied. encode
or decode
function of a codec, depending on if it is an input or output of unit. See the following sections for details.Content-Type: text/xml
.decode
function of the xml
codec which results in the following as it appears in the next pipeline unit.decode
function of codec to body
. The codec is determined by the Content-Type
header. Content-Type: text/xml
header, then the xml
decoder will be applied to the body
parameter.encode
function of a codec to body
. Content-Type
header. For example, if a connector parameter has Content-Type: text/xml
header then the xml
encoder will be applied to body
parameter.decode
function of the codec to body
. Codec is determined by Content-Type
header. For example, if the Connector parameter has Content-Type: text/xml
header then xml
decoder will be applied to body
parameter.