Re: Where to process PageParameters

2009-01-15 Thread Jonas Hoepfner
Subject: Re: Where to process PageParameters setResponsePage(PageB.class, parameters); or use a bookmarkablepagelink Martijn On Wed, Jan 14, 2009 at 1:06 PM, Jonas505 jonas.hoepf...@iteratec.de wrote: Hello, I would like to know, where in my WebPage class

Re: Where to process PageParameters

2009-01-15 Thread Michael Sparer
:21 +0100 Subject: Re: Where to process PageParameters setResponsePage(PageB.class, parameters); or use a bookmarkablepagelink Martijn On Wed, Jan 14, 2009 at 1:06 PM, Jonas505 jonas.hoepf...@iteratec.de wrote: Hello, I would like to know, where in my WebPage class

Re: Where to process PageParameters

2009-01-15 Thread Martijn Dashorst
(param1), p.getString(param2)); preparePageBComponents(result); } Jonas From: Martijn Dashorst 14 Jan 2009 14:24:21 +0100 Subject: Re: Where to process PageParameters setResponsePage(PageB.class, parameters); or use a bookmarkablepagelink Martijn On Wed, Jan 14, 2009

Re: Where to process PageParameters

2009-01-15 Thread Michael Sparer
: Where to process PageParameters setResponsePage(PageB.class, parameters); or use a bookmarkablepagelink Martijn On Wed, Jan 14, 2009 at 1:06 PM, Jonas505 jonas.hoepf...@iteratec.de wrote: Hello, I would like to know, where in my WebPage class PageParameters should

Re: Where to process PageParameters

2009-01-15 Thread behrica
14 Jan 2009 14:24:21 +0100 Subject: Re: Where to process PageParameters setResponsePage(PageB.class, parameters); or use a bookmarkablepagelink Martijn On Wed, Jan 14, 2009 at 1:06 PM, Jonas505 jonas.hoepf...@iteratec.de wrote: Hello, I would like to know, where

Re: Where to process PageParameters

2009-01-15 Thread Erik van Oosten
Michael, I answered on another thread. Regards, Erik. Michael Sparer wrote: Yepp, I also didn't have problems with it as - you're right - I took it at face value without thinking about it too much. I thought to avoid problems when the traffic of our apps grows and/or explodes I'll

Re: Where to process PageParameters

2009-01-14 Thread Jonas Hoepfner
)); preparePageBComponents(result); } Jonas From: Martijn Dashorst 14 Jan 2009 14:24:21 +0100 Subject: Re: Where to process PageParameters setResponsePage(PageB.class, parameters); or use a bookmarkablepagelink Martijn On Wed, Jan 14, 2009 at 1:06 PM, Jonas505 jonas.hoepf...@iteratec.de

Re: Where to process PageParameters

2009-01-14 Thread Martijn Dashorst
setResponsePage(PageB.class, parameters); or use a bookmarkablepagelink Martijn On Wed, Jan 14, 2009 at 1:06 PM, Jonas505 jonas.hoepf...@iteratec.de wrote: Hello, I would like to know, where in my WebPage class PageParameters should be processed. I have a page A where you can fill in

Re: Where to process PageParameters

2009-01-14 Thread behrica
the constructor: public PageB(PageParameters p) { // can throw an exception: DataSet result = callMyBusinessLogik(p.getString(param1), p.getString(param2)); preparePageBComponents(result); } Jonas From: Martijn Dashorst 14 Jan 2009 14:24:21 +0100 Subject: Re: Where to process

Re: Where to process PageParameters

2009-01-14 Thread Jeremy Thomerson
(PageParameters p) { // can throw an exception: DataSet result = callMyBusinessLogik(p.getString(param1), p.getString(param2)); preparePageBComponents(result); } Jonas From: Martijn Dashorst 14 Jan 2009 14:24:21 +0100 Subject: Re: Where to process PageParameters setResponsePage