Re: [Wicket-user] [OT] Ideas for Java webapps free hosting ?

2005-11-27 Thread Laurent PETIT
I didn't know myjavaserver.com, thanks for the address ! -- Laurent On 11/27/05, Jesse Sightler [EMAIL PROTECTED] wrote: Just curious... where are the examples with attribution? I had never noticed attribution for the hosting provider, and somehow I'm still missing who is providing it now...

[Wicket-user] Tag expected

2005-11-27 Thread Pekka Henttonen
A simple question from a newbie: how can you find out what tag is expected when you get a wicket.markup.MarkupException: Tag expected -error. How do you turn debugging on? --- This SF.net email is sponsored by: Splunk Inc. Do you grep

[Wicket-user] Datapicker warning

2005-11-27 Thread Matej Knopp
Hi. I'm using datepicker and I'm constantly getting this warning 17:46:32.146 WARN!! [SocketListener0-3] wicket.util.resource.UrlResourceStream.init(UrlResourceStream.java:92) 22 cannot convert url:

[Wicket-user] Datepicker and opera

2005-11-27 Thread Matej Knopp
Hi. I found out, why the datepicker is not working in Opera. The problem is the wicket:id, that confuses opera. having input wicket:id=xyz id=elementId/ document.getElementById('elementId') returns null. the (temporary?) solution now is to setStripWicketTags(true); Any ideas? -Matej

Re: [Wicket-user] Datapicker warning

2005-11-27 Thread Andrew Lombardi
I have received this warning before, you can basically ignore it. From what I recall, the reason is that you have template polling on, so it is attempting to check for any change in all templates that you are using in your hierarchy. So items that are in jars are not available to be

Re: [Wicket-user] Datepicker and opera

2005-11-27 Thread Juergen Donnerstag
may be html xmlns:wicket=http://wicket.sourceforge.net; to define the namespace? Juergen On 11/27/05, Matej Knopp [EMAIL PROTECTED] wrote: Hi. I found out, why the datepicker is not working in Opera. The problem is the wicket:id, that confuses opera. having input wicket:id=xyz

Re: [Wicket-user] Tag expected

2005-11-27 Thread Eelco Hillenius
The stack trace and error page should provide enough information to figure that out. Can you find it and send it as a reply? All logging in Wicket goes via commons logging usually using the class name for loggers. Most people will probably use Log4J as the implementation, which means you can turn

Re: [Wicket-user] Datapicker warning

2005-11-27 Thread Johan Compagner
yes that is the case. It is a normal warning.I can't make it another type of message so no warning..(info or debug?)johanOn 11/27/05, Andrew Lombardi [EMAIL PROTECTED] wrote: I have received this warning before, you can basically ignore it. From what I recall, the reason is that you have template

[Wicket-user] finals again: StringResourceModel.getParameters()

2005-11-27 Thread Arto Arffman
Hi, Is it possible to remove final keyword from StringResourceModel.getParameters(). I know I could do this ognl-way, but I'd prefer the direct way: public NavigatorLabel(String id, final DataView dataView, final Component page) {super(id, new StringResourceModel(navigatorLabel, page, null,

Re[2]: [Wicket-user] Tag expected

2005-11-27 Thread Pekka Henttonen
Sunday, November 27, 2005, 8:27:46 PM kirjoitit: The stack trace and error page should provide enough information to figure that out. Can you find it and send it as a reply? No, but fortunately I can easily reproduce the error :-) Below is the error page. (These are my first steps getting

Re: [Wicket-user] FeedbackPanel and CSS

2005-11-27 Thread Nick Heudecker
I tried making my own CSSFeedbackPanel and I'm running into the following Exception: Caused by: java.lang.IllegalStateException: No Page found for component [MarkupContainer [Component id = messages, page = No Page, path = feedback:feedbackul:messages.FeedbackPanel$MessageListView]] at

Re: [Wicket-user] FeedbackPanel and CSS

2005-11-27 Thread Martijn Dashorst
At constructor time, the panel still isn't 'added' to the page, so the feedback list cannot be retrieved. In your case, you could alter the model you provide to the attribute modifier, making the evaluation 'lazy': if(feedbackul!=null) { add(new AttributeModifier(class, true, new

Re: [Wicket-user] FeedbackPanel and CSS

2005-11-27 Thread Nick Heudecker
Thanks Martjin. But doesn't the seem like a bit much just to customize the CSS for the containing UL in a feedback panel? On 11/27/05, Martijn Dashorst [EMAIL PROTECTED] wrote: At constructor time, the panel still isn't 'added' to the page, so the feedback list cannot be retrieved. In your

Re: [Wicket-user] FeedbackPanel and CSS

2005-11-27 Thread Nick Heudecker
I've updated my class and I'm not getting the exception anymore, but the class attribute still isn't being added: public class CSSFeedbackPanel extends FeedbackPanel { public CSSFeedbackPanel(final String id) { super(id); WebMarkupContainer feedbackul = (WebMarkupContainer)

Re: Re[2]: [Wicket-user] Tag expected

2005-11-27 Thread Igor Vaynberg
is your border markup (AccessionBorder.html) contained by wicket:border and /wicket:border tags?iewicket:bordermy border markup herewicket:body/some more markup/wicket:border i think ive seen this happen sometimes when wicket:border or wicket:panel tags are missing.-IgorOn 11/27/05, Pekka

Re: [Wicket-user] FeedbackPanel and CSS

2005-11-27 Thread Martijn Dashorst
change the signature to: Object getObject(Component component) { } That will help, now it didn't override anything. Apologies for the mixup. Martijn On 11/27/05, Nick Heudecker [EMAIL PROTECTED] wrote: I've updated my class and I'm not getting the exception anymore, but the class attribute

Re: [Wicket-user] FeedbackPanel and CSS

2005-11-27 Thread Nick Heudecker
That did it. Thanks! On 11/27/05, Martijn Dashorst [EMAIL PROTECTED] wrote: change the signature to: Object getObject(Component component) { } That will help, now it didn't override anything. Apologies for the mixup. Martijn On 11/27/05, Nick Heudecker [EMAIL PROTECTED] wrote: I've

Re: [Wicket-user] Web Continuation Servers

2005-11-27 Thread Timo Stamm
Johan Compagner wrote: ahh so a program on the webserver just runs in its own thread. (every session has its own thread) And the webserver threads are dispatchting to those threads and then getting response from them. That doesn't look to hard to do. (the burden on the webserver would improved