On 9 Nov, 19:00, Cyril <
cyrilnes...@gmail.com> wrote:
> I finally figured it out. But first of all thanks to George for his
> support on this matter.
>
> 1-First issue: how to get the Google app engine to display my log
> output.
> When using log4j, you must Set the default logging level for all
> loggers to INFO in the logging.properties file.
>
> 2-After applying George's patch, I didn't get much more info, so I
> decided to remove my security implementation, so it would give me more
> info in the logs (org.springframework.security..).
> Doing that I had the GAE complaining about linkedhashmap not being
> serializable.
> The linkedhashmap is part of the white list so I really don't know why
> it's complaining. But after replacing the linkedhashmap by a hashmap
> in my serialized class the problem finally went away!
>
> This is caused by the fact that the accessOrder field of a
> LinkedHashMap is set at
> construction time, but there's no public method to retrieve it. Using
> reflection is
> viable in hosted and web mode, but is denied for security reasons in
> AppEngine.
>