Re: DateField throwing runtime error in IE only

2008-09-10 Thread Eyal Golan
cartina, nanotech, I had similar problem. (I will ask it when I have time to compose it well :) ) Try to use a page with the Modal and not a panel. The change should be pretty easy. Hope that will help On Tue, Sep 9, 2008 at 4:19 PM, cartina84 [EMAIL PROTECTED] wrote: I am having the same

Re: [OT] Wicket in Action Jubilation

2008-09-10 Thread Frank Bille
Yay, I got mine (yesterday, when I wasn't at work). Looks very nice. On Thu, Sep 4, 2008 at 8:10 AM, Jonathan Locke [EMAIL PROTECTED]wrote: i just got mine today. it is really really nice!!! Martijn Dashorst wrote: Thanks for the report, I've notified Manning of this issue and

Re: DateField throwing runtime error in IE only

2008-09-10 Thread cartina84
I need use a panel because I must replace it to another when the user choose an option. egolan74 wrote: cartina, nanotech, I had similar problem. (I will ask it when I have time to compose it well :) ) Try to use a page with the Modal and not a panel. The change should be pretty easy.

Re: Development/Deployment style attributes

2008-09-10 Thread Michael Sparer
To have the same markup in deployment and development mode you can turn off the wicket tags in the development mode as well by doing getMarkupSettings().setStripWicketTags(true); in your app's init method. Maybe that helps you ... regards, Michael insom wrote: Sorry, the

Re: DateField throwing runtime error in IE only

2008-09-10 Thread Eyal Golan
OK, I'll try to describe my problem and maybe it will clear up yours. I'm not sure, but hey, who knows. We have a customized button. Basically what it does is: 1. I force the user to put button in the markup (with the check tag method). 2. I add in the content between the button and /button a

Re: DateField throwing runtime error in IE only

2008-09-10 Thread cartina84
I think we have a different problem. I have a form with 2 ajax button, 3 labels and 2 date text field with 2 date picker. when i click on datePicker the calendar do not came up. if put the datetextfield ( and its date picker) out of the form it works fine. egolan74 wrote: OK, I'll try to

Re: newbie problem witch wicket...

2008-09-10 Thread dlipski
Its very similar to my solution number 1. Instead of executing setRedirect(true) and setResponsePage(somePage) you propose to throw RestartResponseAtInterceptPageException. Could you explain why its better to throw this exception rather then redirect to resposne page ? If I understand

Re: [OT] Wicket in Action Jubilation

2008-09-10 Thread Gwyn Evans
Mine arrived here in the UK yesterday too! /Gwyn On Wed, Sep 10, 2008 at 8:19 AM, Frank Bille [EMAIL PROTECTED] wrote: Yay, I got mine (yesterday, when I wasn't at work). Looks very nice. On Thu, Sep 4, 2008 at 8:10 AM, Jonathan Locke [EMAIL PROTECTED]wrote: i just got mine today. it

Re: Best first approach to Wicket for my case

2008-09-10 Thread Jörn Zaefferer
Persistence with Hibernate annotations and Spring declarative transactions (@Transactional) provide a great programming model. Wicket on top of that, with Spring components injected via @SpringBean works well, too, though so far Wicket doesn't really leverage Java 5. One notable exceptions is the

Re: DateField throwing runtime error in IE only

2008-09-10 Thread Eyal Golan
Maybe you are correct, but could you try to change to a Page only to see if the problem still happens? I thought that the problems are related because I guessed that somehow, a modal is not visible so the children are not rendered so the JS can't find them. And because of that it won't response at

Re: DateField throwing runtime error in IE only

2008-09-10 Thread cartina84
but if i not initialize the date the calendar came up one time only.. I resolved with an date text field out of the form and an hidden text in the form.. it isn't a good practice but for now work fine egolan74 wrote: Maybe you are correct, but could you try to change to a Page only to see

Hot deployment / code swapping

2008-09-10 Thread pixologe
Hi everybody, I have read in some older messages of this list that wicket by default takes care of re-deploying changed classes and HTML files, does that still apply? It does not work for me, not even with a fresh quickstart project. Neither HTML files nor Java classes are reloaded when they

Components render problem

2008-09-10 Thread Ajayi Yinka
Hi guys, I am a newbie in wicket. I am presently developpng an application using wicket framework. I am having problem in submitting my forms. The form submissionis actually working whenever I enter a value but if no value is put in the textbox, feedback panel will display the error message (I

Re: Components render problem

2008-09-10 Thread Serkan Camurcuoglu
if onSubmit is not called and the form is redisplayed with the values that you've last entered, it seems like the form is not validated successfully.. Ajayi Yinka wrote: Hi guys, I am a newbie in wicket. I am presently developpng an application using wicket framework. I am having problem in

Re: GMap2 (wicket-contrib-gmap2) and autozoom with getBoundsZoomLevel

2008-09-10 Thread normanr
With we, I meant my colleagues and me. And for us, I think it's enough to calculate a ZoomLevel passed to the map, that all GLatLngs given are visible on this map. So yes it's more like the link you posted Martin. Regards, norman Martin Funk-3 wrote: normanr wrote: Not right now Martin,

Re: Hot deployment / code swapping

2008-09-10 Thread Piller Sébastien
Hi, if your app is configured to run in developpment mode, hot deployment should work as expected (at least for html templates). afaik, it doesn't apply for changes in classes files. You have to redeploy to get the changes in class files. pixologe a écrit : Hi everybody, I have read in

Re: GMap2 (wicket-contrib-gmap2) and autozoom with getBoundsZoomLevel

2008-09-10 Thread Ryan McKinley
Strangely I needed to get this to work just yesterday! I was able to hack it by letting GMap2.java take a list of strings it will output at the end of getJSinit() GLatLngBounds bounds = new GLatLngBounds(sw, ne); gmap.appendInitJS( var xxx = +bounds.getJSconstructor()+;\n );

Re: Hot deployment / code swapping

2008-09-10 Thread pixologe
Thanks for your reply. The app is running in development mode and I did not change anything in the quickstart project, however there's no re-deployment at all. :-/ Other wicket users out there, does this work for you? If yes: HTML only or classes too? Just wondering what exactly is the way it

Re: Hot deployment / code swapping

2008-09-10 Thread Witold Czaplewski
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, in Application take a look at getResourceSettings().setResourcePollFrequency(Duration.ONE_SECOND); which should at least work for resource files (like html-templates or property-files). Witold Am Wed, 10 Sep 2008 03:57:22 -0700 (PDT) schrieb

Re: Hot deployment / code swapping

2008-09-10 Thread Martijn Dashorst
The maven jetty plugin needs to be configured separately. See its documentation regarding hot deployment. Martijn On Wed, Sep 10, 2008 at 1:44 PM, pixologe [EMAIL PROTECTED] wrote: Thanks for your reply. The app is running in development mode and I did not change anything in the quickstart

Re: Hot deployment / code swapping

2008-09-10 Thread Florian Sperber
Hi, I use eclipse as a development environment and eclipse supports in the debug mode a fairly good hotreplace of changed java-code (not always but often enough :-)). Kind regards Florian Sperber pixologe schrieb: Thanks for your reply. The app is running in development mode and I did not

Re: Components render problem

2008-09-10 Thread Ajayi Yinka
I thought as much, it seems I am missing something out in validation process. Please help me check out from this snippet of my codes userId = new TextField(userId, new Model()); userId.setRequired(true); userPassword = new PasswordTextField(userPassword, new Model());

Re: Hot deployment / code swapping

2008-09-10 Thread pixologe
Thanks - I saw this one before, it is set to 1 second by default... but has no effect for me ... Witold Czaplewski wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, in Application take a look at getResourceSettings().setResourcePollFrequency(Duration.ONE_SECOND); which

Re: Hot deployment / code swapping

2008-09-10 Thread pixologe
Yeah I know - but there are several reasons why I do not like working with it. Hot swapping is not enough to make me change ;-) Netbeans is capable of replacing java code, too - you just have to tell it when to do this... :) Florian Sperber wrote: Hi, I use eclipse as a development

Re: Hot deployment / code swapping

2008-09-10 Thread Uwe Schäfer
pixologe schrieb: Thanks - I saw this one before, it is set to 1 second by default... but has no effect for me ... did anyone mention javarebel? http://zeroturnaround.com this one aims to solve this exact problem. i use it, and i´m quite happy with it. cu uwe

Re: Hot deployment / code swapping

2008-09-10 Thread pixologe
No, there isn't even an init method in the untouched quickstart project :) According to Martijn's message, there has some jetty config to be done... Currently having a look Thanks so far... Witold Czaplewski wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 it works for me.

Re: Hot deployment / code swapping

2008-09-10 Thread pixologe
Hi Martijn, So this means that the wicket quickstart project does NOT do it out of the box? Which obviously goes for non-maven-projects too then? That's good to know, I obviously have been terribly misinformed then... Even though it will obviously take me some more time to figure out how this

Re: Hot deployment / code swapping

2008-09-10 Thread pixologe
In this thread, no. However, free software (and - if possible - genuine solutions) is preferred of course. I might consider using JavaRebel (since there is obviously no out-of-the-box-support as have thought), however some time would have to be spent first with evaluation etc... In my present

Re: Components render problem

2008-09-10 Thread Ajayi Yinka
hi guys, I have try to get over the problem by calling Login.class in onError method. this seems to cover this bugs, but I am not satistify as the error message is still redisplaying in the next page. I think what i really need is the problems that are associated with validation. On Wed, Sep 10,

Re: Hot deployment / code swapping

2008-09-10 Thread Martijn Dashorst
The maven jetty plugin is not meant for development, but for quick demos. Stop trying to use the jetty plugin for something it is not intended for. The Wicket quickstart project provides a very well functioning embedded jetty server, which runs like a charm in the Eclipse debugger (and IDEA and

Re: Hot deployment / code swapping

2008-09-10 Thread Eyal Golan
Regarding the embedded jetty, do you know if it is possible to point it to an external WAR so it will be as if deployed as well? I looked into Jetty's document but didn't find. On Wed, Sep 10, 2008 at 4:17 PM, Martijn Dashorst [EMAIL PROTECTED] wrote: The maven jetty plugin is not meant for

Re: Hot deployment / code swapping

2008-09-10 Thread Roman Zechner
I am using the maven jetty plugin in development and it works fine for me. I don't see why you shouldn't use it as Martijn pointed out? If there's a need, I can post the required configuration here. I am working under WinXP, all my stuff is redeployed after changes have been made when working

Re: Hot deployment / code swapping

2008-09-10 Thread pixologe
Martijn Dashorst wrote: The maven jetty plugin is not meant for development, but for quick demos. Well, at least to me, this was not obvious. Good to know. However, also after starting the quickstart project within the IDE, there is not hot deployment of classes or HTML files. Same

Re: Hot deployment / code swapping

2008-09-10 Thread Martijn Dashorst
Because of discussions such as this. I'd like folks to actually use an IDE and the quickstart as it was intended. We made the quickstart so that this type of questions don't get asked—saves time, energy and frustrations on both ends. mvn jetty:run is nice to quickly test a web project, but not

Re: Hot deployment / code swapping

2008-09-10 Thread Martijn Dashorst
Then you don't have netbeans configured to copy the html over to the classpath, like I told in my first reply. Martijn On Wed, Sep 10, 2008 at 3:56 PM, pixologe [EMAIL PROTECTED] wrote: Martijn Dashorst wrote: The maven jetty plugin is not meant for development, but for quick demos. Well,

Re: Hot deployment / code swapping

2008-09-10 Thread pixologe
Well, that was sort of the initial question... Does wicket itself or the quickstart project provide any more hot deployment than my IDE's? (Which is, in case of netbeans, replacing classes in debug mode)... Still, I am not sure what the answer is... Martijn Dashorst wrote: Because of

Re: Hot deployment / code swapping

2008-09-10 Thread pixologe
You mean the one in which you say one shouldn't use mvn jetty plugin for development? Hmmm... it says The Wicket quickstart project provides a very well functioning embedded jetty server, which runs like a charm in the Eclipse debugger (and IDEA and Netbeans debugger) providing everything

Crystal Reports with Wicket

2008-09-10 Thread Ricky
While using crystal report viewer to display reports; I use a method getHtmlContent( ) which calls getWriter( ) on response, however as far as i can make out, Wicket by default uses getOutputStream( ) on response, therefore when getHtmlContent( ) is called on report view while displaying report

Re: Custom Validator on Panel

2008-09-10 Thread Igor Vaynberg
see formcomponentpanel -igor On Wed, Sep 10, 2008 at 1:59 AM, ulrik [EMAIL PROTECTED] wrote: Hello! I have a webpage with this structure: html body form wicket:id=form div wicket:id=addressPanel/ input type=submit wicket:id=submitButton/ /form /body /html The

Re: Hot deployment / code swapping

2008-09-10 Thread Roman Zechner
I don't know about the time efforts in using your suggested way, but by using the maven jetty plugin you only have to configure the project once, so each new developer joining the project doesn't have to make any configuration on its's IDE. In that way you always provide kind of a quickstart

Re: Hot deployment / code swapping

2008-09-10 Thread Martijn Dashorst
Hmm sorry, I had it typed in but apparently didn't send it. You have to tell Maven, Jetty, Your IDE that it needs to copy the html files from the src directory to the classpath. Wicket Quickstart does this on each compile because of the resources section. Apparently the jetty plugin doesn't pick

Re: Hot deployment / code swapping

2008-09-10 Thread Martijn Dashorst
I don't have to configure anything. run the archetype command, import project into eclipse, right click on Start class select Debug as Java application and I'm done. I don't know what configuration you are talking about, but I don't have to meddle with external jetty configurations, making sure

Re: Hot deployment / code swapping

2008-09-10 Thread Igor Vaynberg
wicket does not provide anything in the way of deployment. what it does in dev mode is monitor any changes to html/properties files and when they are changed it evicts them from cache so next time you reload the page you see the changes. obviously wicket does not know where your source file live,

Re: JavaRebel experience

2008-09-10 Thread reikje
Is it possible to have Java Rebel reload the Wicket HTML as well? Like when we deploy a war file to JBoss, it will contain html and class files. The class files I can reload using Java Rebel, how would you do it with the html files? Stefan Simik wrote: Java Rebel worked for me too. I had no

Re: Hot deployment / code swapping

2008-09-10 Thread Roman Zechner
Sorry, I misinterpreted your previous post. I will check the bonus chapters of WiA. Roman Martijn Dashorst wrote: I don't have to configure anything. run the archetype command, import project into eclipse, right click on Start class select Debug as Java application and I'm done. I don't know

Calling a javascript function on render

2008-09-10 Thread tleveque
Hi I am kind of new to the wicket framework... But here is what I am trying to do: I am implementing a part of an already existing application. In this new section, I have a form, when it is submitted, if some conditions are respected, I need to call an already existing javascript function

Re: Calling a javascript function on render

2008-09-10 Thread pixologe
Hi there, have a look at IHeaderContributor. There's an easy example in the API docs. http://wicket.apache.org/docs/wicket-1.3.2/wicket/apidocs/org/apache/wicket/markup/html/IHeaderContributor.html Cheers tleveque wrote: Hi I am kind of new to the wicket framework... But here is

RE: https flips to http

2008-09-10 Thread insom
Here's what I see from using Tamper Data. It appears that there's a 302 redirect causing the switch. Is that something Wicket does? http://www.nabble.com/file/p19414977/tamperData.gif Jeremy Thomerson-5 wrote: Wicket uses relative URLs, so at first guess, I'd think it was something else.

Re: https flips to http

2008-09-10 Thread Jörn Zaefferer
Setting the following security-constraint in your web.xml should fix that: security-constraint web-resource-collection web-resource-namesecure/web-resource-name url-pattern//url-pattern /web-resource-collection user-data-constraint

Re: https flips to http

2008-09-10 Thread Jeremy Thomerson
You can look at the response headers and see where the redirect is coming from. You can also view source on the response (all from tamper data) and see what it is exactly. For instance, I have a server that requires HTTPS. So, I use Apache to redirect all port 80 requests to the port 443

Can we have a prefix in the subject line for any emails from this mailing list?

2008-09-10 Thread Vernon
Emails from this mailing list quickly jam up my email account. Since there isn't a filter for this email account, I have to move emails to another folder by hand. It would be very helpful if the subject line with a prefix like [wicket-user] so that I know what the email is about. Thanks.

Re: Hot deployment / code swapping

2008-09-10 Thread pixologe
Cool... thanks a lot. I will check this out tomorrow! Thanks for sharing this piece have a nice evening. Roman Zechner | Liland wrote: don't worry, we had our own problems in the beginning to get this stuff working. here we go - hope I haven't forgotten anything. you need to modify

Re: Hot deployment / code swapping

2008-09-10 Thread Roman Zechner
Now I am using the embedded jetty server as suggested in the bonus chapters of Wicket in Action. But Spring complains that it is missing a bean dataSource, so I set the jetty deployment descriptor with WebAppContext bb = new WebAppContext();

Re: Can we have a prefix in the subject line for any emails from this mailing list?

2008-09-10 Thread Jeremy Thomerson
Can you do a filter on emails sent to users@wicket.apache.org ? That's what I do, and it works great. On Wed, Sep 10, 2008 at 11:43 AM, Vernon [EMAIL PROTECTED] wrote: Emails from this mailing list quickly jam up my email account. Since there isn't a filter for this email account, I have to

Re: Form values lost in combination of Forms plus ModalWindow

2008-09-10 Thread German Morales
Investigating a little more, my problem seems to be caused by AjaxFormSubmitBehavior#onEvent protected void onEvent(AjaxRequestTarget target) { getForm().getRootForm().onFormSubmitted(); which calls onFormSubmitted on the RootForm, and not in the Form i've passed to my

Re: Can we have a prefix in the subject line for any emails from this mailing list?

2008-09-10 Thread Ryan Gravener
switch to gmail On Wed, Sep 10, 2008 at 12:43 PM, Vernon [EMAIL PROTECTED] wrote: Emails from this mailing list quickly jam up my email account. Since there isn't a filter for this email account, I have to move emails to another folder by hand. It would be very helpful if the subject line

Re: Form values lost in combination of Forms plus ModalWindow

2008-09-10 Thread Matej Knopp
I would need a quick start to see where it is going wrong. -Matej On Wed, Sep 10, 2008 at 7:26 PM, German Morales [EMAIL PROTECTED] wrote: Investigating a little more, my problem seems to be caused by AjaxFormSubmitBehavior#onEvent protected void onEvent(AjaxRequestTarget target) {

Seeing html changes without jetty restart.

2008-09-10 Thread Carl Hu
I used to be able to see changes to html without restarting jetty. It has a been a long time since I needed to make extensive html changes so I don't know what's changed, but for some reason, this doesn't work anymore. I tried many things to no avail (for example, even the sample quick-start and

WicketTester feature request

2008-09-10 Thread Jan Stette
Hi all, I've had a few problems with WicketTester recently and would like to submit a request for when it gets overhauled for version 1.5 (is that still the plan by the way?): It would be really useful to have a clean way to hook in code to execute pre- and post-request for operations that take

Re: Form values lost in combination of Forms plus ModalWindow

2008-09-10 Thread German Morales
That would be somehow complicated to produce right now. To make my question different... why the javascript side sends only the nested form info (wicketSubmitFormById()) and on wicket side the root form is the one that gets called? I've already tried and it works ok if i make the nested form do

Re: Form values lost in combination of Forms plus ModalWindow

2008-09-10 Thread Matej Knopp
But that is exactly what should happen. Wicket javascript should find root form element and serialize that. Can you please check in your markup if there are any nested form tags? (shouldn't be). -Matej On Wed, Sep 10, 2008 at 8:11 PM, German Morales [EMAIL PROTECTED] wrote: That would be

Re: Custom Validator on Panel

2008-09-10 Thread ulrik
Thanx for your reply! I sort of solved it using the formcomponentpanel. But I'm not sure I'm doing it in the most elegant way.. I have a: public class CustomValidator extends AbstractValidator { . . . protected void onValidate(IValidatable iValidatable){ } } I have

Re: Custom Validator on Panel

2008-09-10 Thread Igor Vaynberg
keep a reference to them as fields and call textfield.getconvertedinput() to get to the value -igor On Wed, Sep 10, 2008 at 11:26 AM, ulrik [EMAIL PROTECTED] wrote: Thanx for your reply! I sort of solved it using the formcomponentpanel. But I'm not sure I'm doing it in the most elegant way..

Re: ajax dropdowns

2008-09-10 Thread Scott Swank
Thank you Matej. I already tried that. I get the same behavior either way. Oddly, I only get the problem if an update occurs as the onblur for the field preceding the select (drop down) element. At that point I am focused on the select and can change it's value. However in IE6 I still tab out

Re: Form values lost in combination of Forms plus ModalWindow

2008-09-10 Thread German Morales
There are no nested form tags, as expected... let me give you more details i'm discovering: The AjaxSubmitLink has something like this... function onclick(event) { var wcall = wicketSubmitFormById( id of my nested form ); return false; } This calls wicketSubmitFormById, no surprises...

Re: Form values lost in combination of Forms plus ModalWindow

2008-09-10 Thread German Morales
I'm also reading this... http://cwiki.apache.org/WICKET/nested-forms.html which in the case of all forms enabled, inner form submitted (3rd row). the result should be: Outer: nothing called, but input is preserved Middle: nothing called, but input is preserved Inner: onSubmit called So

Re: Form values lost in combination of Forms plus ModalWindow

2008-09-10 Thread Matej Knopp
You are right. It calls Wicket.Form.serialize(form) with the nested form, but the serialize method should find parent with form tag name and serialize that. -Matej On Wed, Sep 10, 2008 at 9:04 PM, German Morales [EMAIL PROTECTED] wrote: There are no nested form tags, as expected... let me give

Re: Form values lost in combination of Forms plus ModalWindow

2008-09-10 Thread German Morales
I think that we are closer to the problem now... In my case (going back to the original post), the form i'm submitting is inside a ModalWindow. I'm using Firebug to see the generated DOM in runtime, and i find this (extracted...) before calling the ModalWindow: body div here is all my

Re: Form values lost in combination of Forms plus ModalWindow

2008-09-10 Thread Matej Knopp
Check if your DOM hierarchy is valid, e.g. if you don't have any div tag inside span tags. -Matej On Wed, Sep 10, 2008 at 10:08 PM, German Morales [EMAIL PROTECTED] wrote: I think that we are closer to the problem now... In my case (going back to the original post), the form i'm submitting is

Re: Form values lost in combination of Forms plus ModalWindow

2008-09-10 Thread German Morales
I don't see any div inside span in my stuff (we have suffered problems with this long ago, and we are more careful lately). Besides that, is it ok that the ModalWindow creates its own div at body level? Isn't that the reason of my problem? German 2008/9/10 Matej Knopp [EMAIL PROTECTED] Check

cross session leakage

2008-09-10 Thread Edward
1.3.4 says it fixed cross session leakage due to a dangling thread local in exceptional circumstances... but I don't see an actual but identified in the release notes. What exactly was fixed and what was the exceptional circumstance? Thanks, Edward

Re: Form values lost in combination of Forms plus ModalWindow

2008-09-10 Thread German Morales
I have a quickstart project, should i send it privately? 2008/9/10 German Morales [EMAIL PROTECTED] I don't see any div inside span in my stuff (we have suffered problems with this long ago, and we are more careful lately). Besides that, is it ok that the ModalWindow creates its own div at

Re: Form values lost in combination of Forms plus ModalWindow

2008-09-10 Thread Igor Vaynberg
attach it to a jira issue please -igor On Wed, Sep 10, 2008 at 3:22 PM, German Morales [EMAIL PROTECTED] wrote: I have a quickstart project, should i send it privately? 2008/9/10 German Morales [EMAIL PROTECTED] I don't see any div inside span in my stuff (we have suffered problems with

Re: [OT] Wicket in Action Jubilation

2008-09-10 Thread David Leangen
Mine arrived here in the UK yesterday too! Got mine here in Japan, too. Cool! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Form values lost in combination of Forms plus ModalWindow

2008-09-10 Thread Matej Knopp
On Wed, Sep 10, 2008 at 10:49 PM, German Morales [EMAIL PROTECTED] wrote: I don't see any div inside span in my stuff (we have suffered problems with this long ago, and we are more careful lately). Besides that, is it ok that the ModalWindow creates its own div at body level? Isn't that the

Re: ajax dropdowns

2008-09-10 Thread Scott Swank
Matej, I duplicated this scenario in a simple Wicket page and I do not see the problem, so this seems to be the result of some other interaction rather than a Wicket javascript bug. I will post back once I have a better sense of the issue. Thank you, Scott On Wed, Sep 10, 2008 at 11:51 AM,

Re: WicketTester feature request

2008-09-10 Thread Timo Rantalaiho
On Wed, 10 Sep 2008, Jan Stette wrote: I've had a few problems with WicketTester recently and would like to submit a request for when it gets overhauled for version 1.5 (is that still the plan by the way?): Depending on what exactly overhaul means (English is not my native language), yes it

Apache is freezing CPU

2008-09-10 Thread jmatt
We have a server with more or les 30K daily pageviews with 6k unique users. Its content is mainly all dynamic but lately we've been experimenting some problems at peak hours. That's some of our info: Celeron® 2.0GHz Processor 1 GB RAM Timeout 120 KeepAlive On MaxKeepAliveRequests 100

Re: [OT] Wicket in Action Jubilation

2008-09-10 Thread Eelco Hillenius
And it finally shows up on Amazon: http://www.amazon.com/Wicket-Action-Martijn-Dashorst/dp/1932394982/ref=pd_bbs_sr_1?ie=UTF8s=booksqid=1221107314sr=8-1 We wouldn't mind a few positive reviews on Amazon of course... don't lie, but don't be shy about sharing either ;-) Eelco On Wed, Sep 10, 2008

Wicket job opportunity New York City

2008-09-10 Thread Gerald K
Hi Wicket Users, Kikin is currently looking for a Java Frontend Developer with a background in Wicket. We are already doing some pretty interesting things with Wicket, using it both for regular website stuff as well as for embedded widgets. It is a great position that allows you to push