dynamic url

2007-12-17 Thread tbt
Hi I'm a newbie to wicket and I'm using a WebSession to log users into my application. When navigating through the pages wicket generates a dynamic url such as http://192.222.7.66:8080/oem?wicket:interface=wicket-1:0:: But if you copy this url and paste it in a seperate tab the inner page is

Re: Streaming a huge ZIP file

2007-12-17 Thread Johan Compagner
you can't update a page and download in 1 request. You have to do this in 2. First update the page that does a call back to the server when loaded that loads the resource johan On Dec 17, 2007 9:40 AM, Gabor Szokoli [EMAIL PROTECTED] wrote: Hi, This looks completely straight-forward, we'll

Wicket 1.3.0-rc2 and WebSphere 5.1 Http status 302

2007-12-17 Thread Alex Objelean
I am writing an web application that uses Wicket 1.3.0-rc2 and it should run on WebSphere 5.1. In web.xml I am using the WicketFilter mapped with the URL pattern /admin/* I install the application in WebSphere 5.1 and when I access the home page it works. The URL that I am using is like:

Re: java.lang.OutOfMemoryError: Java heap space

2007-12-17 Thread Matej Knopp
It's not possible to help you without knowing seeing more code. What are the items you are creating? It's probably the models itself that cause the outofmemory error, you are likely to be loading someting huge. -Matej On Dec 17, 2007 6:12 AM, kenixwong [EMAIL PROTECTED] wrote: hi, anyone can

Re: Wicket 1.3.0-rc2 and WebSphere 5.1 Http status 302

2007-12-17 Thread Martijn Dashorst
search the list for websphere... Martijn On Dec 17, 2007 11:00 AM, Alex Objelean [EMAIL PROTECTED] wrote: I am writing an web application that uses Wicket 1.3.0-rc2 and it should run on WebSphere 5.1. In web.xml I am using the WicketFilter mapped with the URL pattern /admin/* I install

Re: Rendering of field contents

2007-12-17 Thread Gerolf Seitz
hi, look in the archives, specifically my answer in this thread[0] ... hth, Gerolf [0] http://www.nabble.com/TextField-rounds-doubles-2C-why--to12997105.html#a13000501 On Dec 17, 2007 11:31 AM, Greven, Jens [EMAIL PROTECTED] wrote: Hi List ;-) I am quite new to the Wicket Framework and

Re: java.lang.OutOfMemoryError: Java heap space

2007-12-17 Thread Michael Sparer
some code would be nice kenixwong wrote: hi, anyone can help ? i was using the Eclipse 3.2.2, jdk1.6.0, jetty 6.0.2, wicket 1.2.4. Once i loop a report page, the eclipse console and page return the error as above. How can i solve it I had tryed to reset the eclispe.ini

Re: Wicket + OSGI + Session

2007-12-17 Thread Daniel Stoch
Hi, Thank you for your suggestion. I have no time to look at this earlier, but Wicket 1.3.0-rc2 is out now and after upgrade the error message I have has changed to: java.lang.IllegalStateException: spring application context locator returned null at

Re: dynamic url

2007-12-17 Thread Alex Jacoby
I'm new to wicket too, but my guess is that if you tried the URL in a new browser entirely (or if you quit and re-opened your browser), the URL wouldn't work any more. New tabs still have all the cookies that the old tabs have, which works out nicely in many cases. They're extensions of

Re: TagCloud

2007-12-17 Thread Uwe Schäfer
Uwe Schäfer schrieb: is there some tag-like component out there already ? uups. sorry. i meant some TagCloud- like component. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Suckerfish dropdowns for wicket

2007-12-17 Thread JulianS
Matej Knopp-2 wrote: Why don't you post a comment to the article? -Matej I'm the author and I'd be happy to contribute the code to wicket-stuff, if someone tells me the process. I've actually upgraded the code to support submenus but haven't had a chance to post it yet. Julian -- View

Re: How to refresh component many times in one ajax request

2007-12-17 Thread Gerolf Seitz
On Dec 17, 2007 10:33 PM, Artur W. [EMAIL PROTECTED] wrote: The component doesn't refresh. Only for the last time. How to make it work? that's because the response is sent *AFTER* loop is over, not when target.addComponent(..) is called. what you need is a AjaxSelfUpdatingTimerBehavior,

How to set the current application to a new thread?

2007-12-17 Thread dzenanr
I have been trying to develop a slideshow with a new thread that will show a new page every 15 seconds. I get the following message: 22:12:29.188 EVENT Started SocketListener on 0.0.0.0:8081 22:12:29.188 EVENT Started [EMAIL PROTECTED] 22:12:38.427 EVENT Started HttpContext[/] Exception in

Re: How to set the current application to a new thread?

2007-12-17 Thread Igor Vaynberg
you cannot push a page to the browser, the browser has to request it. so what i would do is have a timer on client side that requests a new page every x seconds. see AbstractAjaxTimerBehavior -igor On Dec 17, 2007 2:16 PM, dzenanr [EMAIL PROTECTED] wrote: I have been trying to develop a