Re: Capture the response of a page request and displays another page as result

2011-11-15 Thread Dirk Forchel
See https://issues.apache.org/jira/browse/WICKET-4228. Please check the attached patch whether it works. Locally it works the way intented. Dirk Forchel -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Capture-the-response-of-a-page-request-and-displays-another-page

Re: Capture the response of a page request and displays another page as result

2011-11-15 Thread Martin Grigorov
icket-examples? > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Capture-the-response-of-a-page-request-and-displays-another-page-as-result-tp4039468p4042895.html > Sent from the Users forum maili

Re: Capture the response of a page request and displays another page as result

2011-11-15 Thread Dirk Forchel
Finally I've implemented my customized IRequestMapper (CapturingRequestMapper). How can I contribute this little working example to the wicket-examples? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Capture-the-response-of-a-page-request-and-displays-another-pa

Re: Capture the response of a page request and displays another page as result

2011-11-15 Thread Dirk Forchel
Sorry for all the hassle. This sounds now obvious to me. Thank you for your hint. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Capture-the-response-of-a-page-request-and-displays-another-page-as-result-tp4039468p4042521.html Sent from the Users forum mailing list

Re: Capture the response of a page request and displays another page as result

2011-11-15 Thread Martin Grigorov
void onCapture(StringResponse emailResponse) >                        { >                                // Here send the email instead of dumping it > to stdout! >                                System.out.println(emailResponse.toString()); >                        } >                }; >        } > } > > App

Re: Capture the response of a page request and displays another page as result

2011-11-15 Thread Dirk Forchel
p://apache-wicket.1842946.n4.nabble.com/Capture-the-response-of-a-page-request-and-displays-another-page-as-result-tp4039468p4042468.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: us

Re: Capture the response of a page request and displays another page as result

2011-11-14 Thread Martin Grigorov
ow should I implement the forward to the other static result page? And > what is the equivalent for > CapturingBookmarkablePageRequestTarget#onCapture(stringResponse)? > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Capture-the-response-of-a-page-requ

Re: Capture the response of a page request and displays another page as result

2011-11-14 Thread Dirk Forchel
pache-wicket.1842946.n4.nabble.com/Capture-the-response-of-a-page-request-and-displays-another-page-as-result-tp4039468p4039748.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-uns

Re: Capture the response of a page request and displays another page as result

2011-11-14 Thread Martin Grigorov
sage if the generation was successful. The only difference I see is that instead of displaying the generated html (as MailTemplate does) you want to check whether it was generated or not... > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Capture

Re: Capture the response of a page request and displays another page as result

2011-11-14 Thread Dirk Forchel
1842946.n4.nabble.com/Capture-the-response-of-a-page-request-and-displays-another-page-as-result-tp4039468p4039567.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.

Re: Capture the response of a page request and displays another page as result

2011-11-14 Thread Martin Grigorov
inalResponse); >                RequestCycle.get().setRequestTarget(new > BookmarkablePageRequestTarget(displayedPageClass, getPageParameters())); >        } > >        protected abstract void onCapture(StringResponse stringResponse); > } > > > -- > View this message in conte

Capture the response of a page request and displays another page as result

2011-11-14 Thread Dirk Forchel
ssage in context: http://apache-wicket.1842946.n4.nabble.com/Capture-the-response-of-a-page-request-and-displays-another-page-as-result-tp4039468p4039468.html Sent from the Users forum mailing list archive at Nabble.com. ---