Hello,
How does the compression of a blob data via ORDS work?
I tried to enable compression in tomcat:
server.xml
<Connector port=“8443” protocol=“HTTP/1.1" relaxedPathChars=“[]|{}” relaxedQueryChars=‘[]|{}^\`"<>’
maxThreads=“150" SSLEnabled=“true” scheme=“https” secure=“true” compression=“on” compressionMinSize=“1024”
clientAuth=“false” sslProtocol=“TLS” keystoreFile=“/u01/certificat/keystore_tomcat.keystore” keystorePass=“XXX” />
and try the header:
"Accept-Encoding: gzip"
but compression doesn't work
Do you have any idea?
Thank you