Re: How to execute something on the very beginning of the request cycle

2008-09-17 Thread mmocnik
Thanks a lot, thats exactly what I was looking for. I overwrote newRequestCycle() in my Application to return my own WebRequestCycle subclass. I was allready wondering if that really wasn't possible to do without some hack with a filter. Thanks again, Marko igor.vaynberg wrote: > > subclass w

Re: How to execute something on the very beginning of the request cycle

2008-09-17 Thread mmocnik
Hi, I'm trying to bind some values and Factories to the Request Thread. I don't think that will work with a filter. jwcarman wrote: > > You looking to do something like open a database connection? You > could just use a servlet filter. That's what most folks do with the > Spring OpenSession

How to execute something on the very beginning of the request cycle

2008-09-17 Thread mmocnik
Hi, I want to execute some code every time the request cycle starts. (Before any of my components gets called) So, is there a listener or another mechanism which lets me do that? Thanks, Marko -- View this message in context: http://www.nabble.com/How-to-execute-something-on-the-very-beginning

External Form target

2008-05-21 Thread mmocnik
Hi, I want to create a form in a Wicket Panel that POSTs its data to an external site. Simple coding it in the HTML does not work since the target URL and some hidden values will be insterted dynamically. Is there something similar to an ExternalLink only form Forms? Or do I have to add the HTML

Re: Insert dynamic/external HTML string in a page

2008-03-20 Thread mmocnik
Thank you all. Works like a charm. Regards, Marko -- View this message in context: http://www.nabble.com/Insert-dynamic-external-HTML-string-in-a-page-tp16141336p16177878.html Sent from the Wicket - User mailing list archive at Nabble.com. -

Insert dynamic/external HTML string in a page

2008-03-19 Thread mmocnik
Hi, I'm currently searching for a way to insert an HTML String which I get out of a DB into a Wicket Page. The HTML string is from another application, so I can't change anything in it. My first approach was to use a Label, but as Labels encode HTML entities, this failed... I just can't find any