问题
Upgraded server from glassfish 3.1
to payara 4.1.1.171
, took the glassfish
config backup and restored to payara 4.1.1.171
. After that my application is not loading and in console it throws this error net::ERR_INCOMPLETE_CHUNKED_ENCODING
If i change the compression attribute to 'off' then application is loading .
<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 the compression="on" to compression="off" then its working fine. Don't why this is breaking in payara which was working in glassfish with same setting. I can't turn off the compression which will saves the bandwidth.
Note: Already some issues are reported similar to this Chrome net::ERR_INCOMPLETE_CHUNKED_ENCODING error but this is not case for me
回答1:
The issue should be fixed in Payara 4.1.2.172 according to this issue Use that version instead of 4.1.1.171
来源:https://stackoverflow.com/questions/44917544/application-is-not-loading-after-upgrading-to-payara-4-1-1-171