REST request with parameters - how to avoid default Content-Transfert-Encoding:quoted-printable ?
Hi, I am facing to an issue (with soapUI version 5.6.0).
My POST REST request have two parameters. One of them is a zip file converted in Base64.
In Request Raw tab You can see a parameter "Content-Transfert-Encoding" with "quoted-printable". The parameter content contains multiple lines may be due to the Content-Transfert-Encoding parameter value.
Expected one line with all the parameter content
How to avoid this default value ?
In a previous topics one member says that soapUI uses the mail api. And explains that if the primary type of this datasource is "text", and :
- If all the bytes in its input stream are US-ASCII, then the encoding is "7bit".
- If more than half of the bytes are non-US-ASCII, then the encoding is "base64".
- If less than half of the bytes are non-US-ASCII, then the encoding is "quoted-printable".
But how to make sure that more than half of the bytes are non-US-ASCII ?