[Wicket-user] Wicket and Sun Java App Server

2006-07-29 Thread Ayodeji Aladejebi
please any anyone tried wicket on Sun Java Application Server, I am just evaluating this i met this error. Any ideas on how i can make this rightWicketMessage: Error attaching this container for rendering: [MarkupContainer [Component id = menuItem, page = net.cowblock.president.pages.StartPage,

Re: [Wicket-user] Wicket and Sun Java App Server

2006-07-29 Thread Johan Compagner
I don't know that Application Server but what is happening is that our PropertyResolver uses reflection to get to a propertyAnd that app servers seems to have that disabled by default in its permissions file. I don't know where exactly to change that and if that is easy to do.But i guess many

Re: [Wicket-user] Wicket and Sun Java App Server

2006-07-29 Thread V. Jenks
I'm doing extensive development these days on SJAS 9.0 (Glassfish) and I've only had one issue w/ Wicket, which was resolved in 1.2.1. I found the logging to conflict w/ SJAS and this was *only* a problem w/ Stateful beans in EJB 3.0. See here:

Re: [Wicket-user] Wicket and Sun Java App Server

2006-07-29 Thread Janne Hietamäki
something like this added into your app servers server.policy should help:grant codeBase "file:/x/webapps/appl/WEB-INF/lib/wicket-1.2.jar" {        permission java.lang.reflect.ReflectPermission "suppressAccessChecks";};Google for "server.policy" and "suppressAccessChecks"On 29.7.2006, at

Re: [Wicket-user] Wicket and Sun Java App Server

2006-07-29 Thread Gwyn Evans
Does this page (http://www.wicket-wiki.org.uk/wiki/index.php/Java_security_permissions) on the Wiki help? /Gwyn On 29/07/06, Ayodeji Aladejebi [EMAIL PROTECTED] wrote: please any anyone tried wicket on Sun Java Application Server, I am just evaluating this i met this error. Any ideas on how i