Hi, With the QPID python client the body attribute uses the AmqpValue (0x77) AMQP 1.0 field.
msg = Message(body={‘xxxxxx') Is there a way to use ApplicationData (0x75) (AMQP 1.0 filed) instead of AmqpValue (0x77) ? AMQP 1.0 Fields: byte MessageAnnotations = 0x72; byte MessageProperties = 0x73; byte ApplicationProperties = 0x74; byte MessageHeader = 0x70; byte AmqpValue = 0x77; // used by proton python byte ApplicationData = 0x75; // I need to use this one Thank you - Gabriele