After update to osx 10.13 High Sierra, servoy admin page error
‘cannot decode raw data’ (NSURLErrorDomain:-1015)
Solution???
After update to osx 10.13 High Sierra, servoy admin page error
‘cannot decode raw data’ (NSURLErrorDomain:-1015)
Solution???
Does this happen with all browsers or just Safari?
Googling this comes up with issues related to compression.
Try setting disabling compression by setting it to “off” in /path/to/servoy/application_server/server/conf/server.xml
<Connector port="8080"
protocol="HTTP/1.1"
maxThreads="500" connectionTimeout="60000"
redirectPort="8443" useBodyEncodingForURI="true"
compression="off" <== was "4096"
compressableMimeType="text/html,text/xml,text/plain,text/javascript,text/css" />
and restart developer.
Rob
When you use High Sierra change the setting in server.xml, as mention by Rob
/path/to/servoy/application_server/server/conf/server.xml
<Connector port=“8080”
protocol=“HTTP/1.1”
maxThreads=“500” connectionTimeout=“60000”
redirectPort=“8443” useBodyEncodingForURI=“true”
compression=“off” <== was “4096”
compressableMimeType=“text/html,text/xml,text/plain,text/javascript,text/css” />
This works fine for me, thanks Rob.