users@glassfish.java.net

Re: PropertyPermission

From: Gerald Holl <gerald_at_holl.co.at>
Date: Tue, 20 Nov 2007 15:07:45 +0100

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.