App does not load after update in payara 4.1.1.171

Updated server from glassfish 3.1

before payara 4.1.1.171

, took a glassfish

config backup and restored to payara 4.1.1.171

. After that my app doesn't load and in the console it gives this error net :: ERR_INCOMPLETE_CHUNKED_ENCODING

If I change the compression attribute to "off" then the application is loaded.

<http request-timeout-seconds="2700" chunking-enabled="false" compressable-mime-type="text/html,text/xml,text/plain,image/gif,image/jpeg,image/png,text/css,text/javascript,application/json,application/xml" max-connections="250" compression="on" default-virtual-server="server">

      

In the above configuration, if I change compression = "on" to compression = "off" then it works fine. Don't do this because it breaks in payara which worked in glassfish with the same setting. I cannot turn off the compression, which will save bandwidth.

Note. There have already been reported some issues like this Chrome net :: ERR_INCOMPLETE_CHUNKED_ENCODING error but this is not the case for me

+3


source to share


1 answer


The issue should be fixed in Payara 4.1.2.172 according to this issue Use this version instead of 4.1.1.171



0


source







All Articles