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 fha...@online.de Hello together, I am trying to implement an authentication+authorization using Spring security and wicket-auth-roles based on this

Re: [OT] Wicket Jobs List?

2011-10-19 Thread moèz ben rhouma
Hi, We have a linkedin group Apache Wickethttp://www.linkedin.com/groups?jobs=gid=80181trk=anet_ug_jobs and under this group we have a panel jobs I hope it helps you. 2011/10/19 James Carman ja...@carmanconsulting.com Fellow Wicketeers, Do we have a special mailing list for Wicket jobs? I'm

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 adelb...@ciseonweb.it 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

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 henstri...@yahoo.com hi Guys, I just developed a web application using wicket and is running on a glassfish server and

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: context-param param-namewicket.configuration/param-name param-valuedeployment/param-value /context-param or in your filter:

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

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 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

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 v...@360works.com Hi I've been beating my head against the wall with this. I'm overriding newWebRequest in my Application class:

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 mgrigo...@apache.org Can you try with FormVoid instead of FormString On Tue, Dec 14, 2010 at 4:12 PM, nino

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: Brix CMS : Based Wicket framework

2010-12-10 Thread moèz ben rhouma
, schrieb 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 - To unsubscribe, e-mail

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 Weidner

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 ray.weidner.wic...@gmail.com 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.

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
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: link wicket:id=stylesheet 2010/4/7 sahar rostami sahar.rost...@gmail.com Thanks MZemeck But my question in another

Re: resource (css) loading

2010-04-07 Thread moèz ben rhouma
, 2010 at 8:24 PM, moèz ben rhouma benrhouma.m...@gmail.com wrote: 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: link wicket:id=stylesheet 2010/4/7