Re: replaceWith method in Panel not working with AjaxLazyLoadPanel

2014-02-08 Thread Paul Bors
Replace it it on the parent, then add the parent to the ajax target to be refreshed on the screen. ~ Thank you, Paul Bors On Feb 6, 2014, at 5:25 AM, Vishal Popat vishal_po...@hotmail.com wrote: Hi, I have the following panel layout: SomeOtherPanel AjaxLazyLoadPanel Panel

Re: Wicket Wizzard Question / Custom Overview Bars

2014-02-08 Thread Paul Bors
Find the panel you want to modify, say the WizardButtonBar and extend it: public class MyWizardButtonBar extends WizardButtonBar { private static final long serialVersionUID = 1L; public MyWizardButtonBar(String id, Wizard wizard, final boolean finishOnAnyStep) { super(id,

I have not found file where per session data get store under work Folder in wicket application

2014-02-08 Thread Sharad Raut
-- View this message in context: http://apache-wicket.1842946.n4.nabble.com/I-have-not-found-file-where-per-session-data-get-store-under-work-Folder-in-wicket-application-tp4664316.html Sent from the Users forum mailing list archive at Nabble.com.

Re: What is the default size of max per session in wicket

2014-02-08 Thread Sharad Raut
Thanks for replay. By default it shows value 10MB. Is it sufficient -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/What-is-the-default-size-of-max-per-session-in-wicket-tp4664307p4664315.html Sent from the Users forum mailing list archive at Nabble.com.

Modular Wicket Application

2014-02-08 Thread IowA
Hello all, I am new to Wicket. When I use Guice in Wicket's quickstart everything works like a charm and it is possible to deploy it on Tomcat. But when i use same code + write my module deploying to Tomcat ends with errors. Catalina - http://pastebin.com/CaFGzDta Tomcat -

Re: I have not found file where per session data get store under work Folder in wicket application

2014-02-08 Thread Paul Bors
Are you after the user session or the cashed page store, page map? https://cwiki.apache.org/confluence/display/WICKET/Page+maps Drop the wicket debug artifact in your wicket webapp then load this URL to see the Wicket Debug Bar and you can get to see the Wicket Sessions Inspector. Set this to

Re: Modular Wicket Application

2014-02-08 Thread Paul Bors
I’m no expert, but it looks like your filter is not started right. That should be configured via the web.xml file. Perhaps you could create a quick-start and package your project for us to see it as a whole? Only the minimal code that produces the error should be packaged. On Feb 8, 2014, at

Re: Visual HTML diff in Wicket?

2014-02-08 Thread Paul Bors
I would say to find out what Jira is using to diff the CSV commits and use that :) On Feb 6, 2014, at 4:06 PM, Stephan Schrader zsteph...@gmail.com wrote: You could try https://github.com/alkacon/alkacon-diff Stephan Am 06.02.2014 um 10:53 schrieb Martin Dietze d...@fh-wedel.de: In

Re: Apache wicket project as osgi compoments

2014-02-08 Thread Paul Bors
We solved this by using customized security permissions. If a user wasn’t given the permission for module A, so be it :) On Feb 4, 2014, at 7:49 PM, Shengche Hsiao shengchehs...@gmail.com wrote: Hello Thanks for reply, indeed I plan to implement my wicket project in osgi way! But I don't

Web app vulnerability protection in wicket (csrf)

2014-02-08 Thread Brown, Berlin [PRI-1PP]
Does wicket have support for top vulnerabilities? Mainly I am trying to protect against cross site scripting and cross site request forgery attacks. I haven't found anything yet explicitly for those attacks but for CSRF, I was going to try to use the encrypted URL strategy. (And I am