Re: Two WebPages one Site

2009-07-02 Thread Enes Fazli
Hi Igor, I use Wicket 1.4-rc4. Regards, Enes On Thu, Jul 2, 2009 at 5:33 PM, Igor Vaynberg wrote: > what version of wicket are you using? > > -igor > > On Thu, Jul 2, 2009 at 12:25 AM, Enes Fazli > wrote: > > Hello everybody, > > > > I have a requirement whe

Two WebPages one Site

2009-07-02 Thread Enes Fazli
Hello everybody, I have a requirement where I need to have two or more styles for a website. Since layout and content can be different between the two variations I went for a two Webpage classes solution. I created base and base2 which are both abstract and extend webpage. Each page inherits eith

Loosing page parameters after submit

2008-11-17 Thread Enes Fazli
Hello everybody, following situation: I have a comment panel with a form and a paging navigator to show the comments. I implemented a own version of the PagingNavigator which uses BookmarkablePageLinks for navigation links. Now, if i use this panel in a page that has this url *http://localhost/sa

[Wicket Formtester] Problem with Statelessform

2008-11-05 Thread Enes Fazli
Hello everybody, I changed my forms to statelessforms, which works perfectly fine in the actual app, only the test don't work anymore. I'm confronted with folowing exception: *org.apache.wicket.WicketRuntimeException: Internal error parsing wicket:interface = :0:registerForm::IFormSubmitListener::

Re: How to protect against Session Fixation attacks?

2008-08-01 Thread Enes Fazli
getarget(...)); > getrequest().setredirect(true); > > -igor > > On Wed, Jul 30, 2008 at 7:15 AM, Enes Fazli <[EMAIL PROTECTED]> > wrote: > > Hi wicket users, > > > > we are currently in the process of securing our Wicket-powered > > application agains

How to protect against Session Fixation attacks?

2008-07-30 Thread Enes Fazli
Hi wicket users, we are currently in the process of securing our Wicket-powered application against various attack vectors. One of them is Session Fixation, as described here: http://www.owasp.org/index.php/Session_Fixation The recommended protection in Java is to invalidate the Session before au

Re: How to render component markup to string?

2008-07-23 Thread Enes Fazli
-rome? Or building it yourself? > > Martijn > > On Wed, Jul 23, 2008 at 4:39 PM, Enes Fazli <[EMAIL PROTECTED]> > wrote: > > I use rome to create Atom feeds and my intention was to use wicket > generated > > markup for the feed entries content. > > &g

Re: How to render component markup to string?

2008-07-23 Thread Enes Fazli
I use rome to create Atom feeds and my intention was to use wicket generated markup for the feed entries content. On Wed, Jul 23, 2008 at 4:31 PM, Martijn Dashorst < [EMAIL PROTECTED]> wrote: > Why do you want to store it in a string? > > Martijn > > On Wed, Jul 23, 2008 a

Re: How to render component markup to string?

2008-07-23 Thread Enes Fazli
. With regards, Enes F. On Wed, Jul 23, 2008 at 3:44 PM, Martijn Dashorst < [EMAIL PROTECTED]> wrote: > getRequestCycle().setRequestTarget(new StringRequestTarget()); > > On Wed, Jul 23, 2008 at 3:41 PM, Enes Fazli <[EMAIL PROTECTED]> > wrote: > > Hello, > > >

How to render component markup to string?

2008-07-23 Thread Enes Fazli
Hello, I want to create markup with wicket components but I do not want to send it to a browser, I want to store it in a String. Is there a way to do so? With regards, Enes F.