Since the latest update (Version 11.27.3) the “default” view of my responses with “strange” content-types (multipart/related; type=“application/xop+xml”; boundary=“uuid:aaaaaaa-bbbb-ccccc”; start=“[email protected]”; start-info=“application/soap+xml”) seems to be “Hex”.
Before the update the response bodies were shown in “Raw”.
Is there a setting/script to change the default back to “Raw” (or even better “XML”)?
(I tried both “Response format detection” settings but no luck)
Would you be able to share a curl example of a request that you’re seeing this with or something else that will allow us to reproduce what you’re seeing
FYI: Used Fiddlerscript to change the first “Content-Type” header to “text/xml” and the “Response format detection” kicks in as expected and formats the response in pretty XML.
I know that fixing the Content-Type is the “correct” way to solve the problem, but maybe you could change the Response format detection Setting to the following?
Did some more “fiddling” and it seems the “multipart/related” Content-Type is responsible, because with the following Content-Type Headers it worked fine:
“text/xml”
“application/xml”
“application/xop+xml”
“application/soap+xml”
SInce I can’t change the response “Content-Type” of the API on the server myself, I will use “Fiddler” to overwrite it for now. But it would be cool if Postman added an “XML” option to the “Response format detection”.