Gerald Holl wrote:
> Hello,
>
> Every now and then I see the following warning in the server.log:
> http://pastebin.com/f50354c0d
>
>
> Does anybody know what this means?
This error is caused by a security-constraint in web.xml:
<security-constraint>
<web-resource-collection>
<web-resource-name>Automatic SSL Forwarding</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
If I remove this constraint the error is gone.
But I still don't understand what this error means.