Re: Spring secury + auth-roles authentication and authorization: access denied

2011-11-07 Thread moèz ben rhouma
http://javajeedevelopment.blogspot.com/2011/03/integrating-spring-security-3-with.html 2011/11/7 massizigao > Hello together, > > I am trying to implement an authentication+authorization using Spring > security and wicket-auth-roles based on this > https://cwiki.apache.org/WICKET/spring-security

Re: [OT] Wicket Jobs List?

2011-10-19 Thread moèz ben rhouma
Hi, We have a linkedin group Apache Wicket and under this group we have a panel jobs I hope it helps you. 2011/10/19 James Carman > Fellow Wicketeers, > > Do we have a special mailing list for Wicket jobs? I'm looking again > and

job

2011-10-13 Thread moèz ben rhouma
searching for someone who is familiar with Wicket for a 4+ month contract in San Antonio, Texas. If you or anyone you know is interested please message me or email me at ro...@millgroupusa.com. -- Cdt Moèz

Re: wicket is secure by default. why use spring security?

2011-09-19 Thread moèz ben rhouma
http://javajeedevelopment.blogspot.com/2011/03/integrating-spring-security-3-with.html 2011/9/19 Andrea Del Bene > It all depends on your needs ;-). I don't know much about Spring Security, > but personally speaking I've always been fine with Wicket authentication. > > While I was trying to de

Re: moving from development to deployment mode

2011-05-04 Thread moèz ben rhouma
Hi Henry, You have two solutions and nothing else: 1) Override the method getConfigurationType() in your application class 2) Add in your web.xml: wicket.configuration deployment or in your filter: @WebInitParam(name="wicket.configuration", value="deployment") I also

Re: moving from development to deployment mode

2011-05-04 Thread moèz ben rhouma
Hi, In your application class add the following method: @Override public String getConfigurationType() { return Application.DEPLOYMENT; } 2011/5/4 henry > hi Guys, > > I just developed a web application using wicket and is running on a > glassfish server and anything i run the

Re: problems with spring integration

2011-03-30 Thread moèz ben rhouma
Hi, For this error: *java.lang.ClassNotFoundException: net.sf.cglib.proxy.Callback (...)* you can add the cglib-nodep library . I think, this link ( http://javajeedevelopment.blogspot.com/2011/03/integrating-spring-security-3-with.html) can help you. Thanks 2011/3/30 hrbaer > Just to summariz

Re: spring 3.1 wicket auth integration

2011-03-01 Thread moèz ben rhouma
https://cwiki.apache.org/WICKET/spring-security-and-wicket-auth-roles.html 2011/2/28 wic...@geofflancaster.com > Can anyone point me to a tutorial or example on getting spring 3.x setup > and working with wicket-auth-roles for an AuthenticatedWebApplication? > > Thanks in advance. > > --

Re: File upload progress bar

2011-02-04 Thread moèz ben rhouma
If the example doesn't work so I think the problem in your browser. Try to empty the cache, cookies, histories ... and tries again. 2011/2/2 Valentin Avksentyev > Hi I've been beating my head against the wall with this. > > I'm overriding newWebRequest in my Application class: > @Override >

eHour

2010-12-24 Thread moèz ben rhouma
A framework for timesheet management based on Wicket: eHour. http://javajeedevelopment.blogspot.com/2010/12/ehour-timesheet-management.html

Re: 1.5 integer textfield

2010-12-14 Thread moèz ben rhouma
Hi all, make sure that the type of "refreshRate" is Integer. Thanks MBR http://javajeedevelopment.blogspot.com/2010/12/brix-cms-apache-wicket-based-cms.html 2010/12/14 Martin Grigorov > Can you try with Form instead of Form > > On Tue, Dec 14, 2010 at 4:12 PM, nino martinez wael < > nino.marti

Re: Brix CMS : Based Wicket framework

2010-12-10 Thread moèz ben rhouma
Ok, thank you. 2010/12/10 Korbinian Bachl - privat > Hello Moez, > > the link to the repo is wrong. Brix is no longer on googlecode but on > github: https://github.com/brix-cms/brix-cms > > Keep spreading the word for Brix, > > best, > > Korbinian > > >

Brix CMS : Based Wicket framework

2010-12-10 Thread moèz ben rhouma
It's very important for wicket users to now what is Brix CMS. So see the following link: http://javajeedevelopment.blogspot.com/2010/12/brix-cms-apache-wicket-based-cms.html

Re: problem populating ListMultipleChoice selection model

2010-04-19 Thread moèz ben rhouma
Try to change the type of selectedParties from set to List selectedParties = new ArrayList(); 2010/4/19 Ray Weidner > Hi All, > > I'm trying to do something pretty simple: create a choice list with > multi-select, which I iterate through upon clicking a button. > Unfortunately, it looks like m

Re: Date components

2010-04-19 Thread moèz ben rhouma
You just add the following code to your java page: *add(dateTimeField = new DateTimeField("dateEnvoi", new PropertyModel(this, "date")) {});* Which dateEnvoi defined in the markup file (the key of the component). And date defined in java like : private Date date = new Date(); 2010/4/19 Ray Weidn

wicket an JEE6 (web.xml not mandatory)

2010-04-12 Thread moèz ben rhouma
http://www.jroller.com/ouertani/entry/tips_1_wicket_and_jee

Re: resource (css) loading

2010-04-07 Thread moèz ben rhouma
gt; On Wed, Apr 7, 2010 at 8:24 PM, moèz ben rhouma >wrote: > > > If I understand , you can use in constructor of class java the following > > code: > > add(new StyleSheetReference("stylesheet", BasePage.class, "style.css")); > > > > a

Re: resource (css) loading

2010-04-07 Thread moèz ben rhouma
If I understand , you can use in constructor of class java the following code: add(new StyleSheetReference("stylesheet", BasePage.class, "style.css")); and in the html page you add: 2010/4/7 sahar rostami > Thanks MZemeck > But my question in another form is "Where wicket load css (which class