Re: Jboss Portal + Wicket (Portlet)

2008-01-20 Thread Süli Zsolt
Hi Markqt, I followed the instructions I found on this page: http://cwiki.apache.org/WICKET/portal-howto.html So my web.xml looks like this: MailScanner has detected a possible fraud attempt from "java.sun.com" "http://java.sun.com/xml/ns/j2

Security violations and "ERROR: filterStart" with Tomcat deployment on Debian Etch

2008-01-20 Thread Daniel Walmsley
I blogged this, and Eelco wisely suggested I post it here. This is both a warning and plea for help - what's the best way to configure Tomcat on Debian for Wicket?Was up until 3am last night banging my head against another frustrating go-nowhere issue deploying Wicket on Debian Etch’s default Tomca

Re: ListView + reusing Items

2008-01-20 Thread Ned Collyer
Martijn Dashorst wrote: > > And according to me you are the first person in a while to encounter such > a > thing... > Nah, some of us just do workarounds, or begrudgingly add the urgly method call ;). I must admit having something so simple like adding components to a list, and them not work

Re: Required tag types?

2008-01-20 Thread Igor Vaynberg
they are just regular panels, so the markup can come from anywhere where the .class file is: your app, or a jar, wherever. and yes you would have to create a panel per form control. -igor On Jan 20, 2008 2:28 PM, James Carman <[EMAIL PROTECTED]> wrote: > The way my framework is set up, I've got

Re: How to redisplay a previous/known page

2008-01-20 Thread Timo Rantalaiho
On Sun, 20 Jan 2008, [EMAIL PROTECTED] wrote: > in a call back, I'd like to setResponsePage( displayed/created already>) for example, redisplay the home page > without having to do things like setResponsePage(new > HomePage(params)), rather, I'd like to retrieved the HomePage object > that has alre

Re: We are adopting Wicket in our Organization

2008-01-20 Thread robert.mcguinness
igor.vaynberg wrote: > > it would be great if we could see the whitepaper :) > > -igor > I'll see what I can do. - rm3 -- View this message in context: http://www.nabble.com/We-are-adopting-Wicket-in-our-Organization-tp14988751p14989916.html Sent from the Wicket - User mailing list archive

Re: We are adopting Wicket in our Organization

2008-01-20 Thread Igor Vaynberg
it would be great if we could see the whitepaper :) -igor On Jan 20, 2008 3:58 PM, robert.mcguinness <[EMAIL PROTECTED]> wrote: > > As I've stated before in a previous post, I work a for a company that > develops software for the health care industry. It was a battle between > JSF/Seam and Wick

Re: We are adopting Wicket in our Organization

2008-01-20 Thread Eelco Hillenius
> I'd like to thank the authors of the framework for building such a fine > tool. After years of struts development, developing web applications with > Wicket is a breath of fresh air. Keep up the fine work. Good to hear it works well for you Robert. > I'll update this forum with our experience

We are adopting Wicket in our Organization

2008-01-20 Thread robert.mcguinness
As I've stated before in a previous post, I work a for a company that develops software for the health care industry. It was a battle between JSF/Seam and Wicket as the framework of choice for the rewrite of the company's portal. After a whitepaper written by a colleague of mine that compared th

Re: Jboss Portal + Wicket (Portlet)

2008-01-20 Thread Markqt
Hi Süli, How did you configure PortletResourceURLFactory for JBoss portal? I got the following error when trying the example: Caused by: javax.portlet.PortletException: Portlet RolesAuthApplication is incorrectly configured. Init parameter PortletResourceURLFactory not specified, nor as context

Re: Required tag types?

2008-01-20 Thread James Carman
The way my framework is set up, I've got a PropertyEditorFactory interface: public interface PropertyEditorFactory { public Component createPropertyEditor(String componentName, Object target, PropertyMetadata meta); } If I required my factory to return Panel objects instead, where would the mar

Re: Required tag types?

2008-01-20 Thread Igor Vaynberg
instead of using fragments you can use panels, which would make the editors reusable across projects/pages. as far as "why" the checks are there... add(new TextField("foo")); will end up with <== not a very useful textbox wicket does not mutate markup by default, so it will not mutate div ta

Re: Required tag types?

2008-01-20 Thread James Carman
So, the key is to use Fragments? This is very similar to how we did it in Trails. I would like to make this somewhat reusable in other projects so that they can define their own "editors" without having to change this framework code. I'm somewhat new to Wicket, so maybe I just don't understand t

Re: Required tag types?

2008-01-20 Thread Gerolf Seitz
have you seen Al's "Bean Editor" [0]? this might give you a hint in the right direction. regards, gerolf [0] http://herebebeasties.com/2007-08-17/wicket-bean-editor/ On Jan 20, 2008 10:17 PM, James Carman <[EMAIL PROTECTED]> wrote: > Is there any reason that components require that they be ap

Required tag types?

2008-01-20 Thread James Carman
Is there any reason that components require that they be applied to specific tag types in the markup files? I'm writing a little utility which calculates at runtime what "editor" to use based on the property type (a la Trails). So, I have no idea what type of tag to use. I thought I'd just do th

Re: Questions for permission of using the design of wicket-example

2008-01-20 Thread Martijn Dashorst
Hi, It is great to hear that Wicket is popular in Japan! With your questions you ask some difficult ones :) I'll forward your question to the appropriate people within the Apache foundation. It will take some time to get an answer back. So this is not a no or a yes answer, but a "wait for an ans

Questions for permission of using the design of wicket-example

2008-01-20 Thread Tsutomu Yano
Hi, Few days ago, we (I and my friends) organize a user group of Wicket in Japan("Wicket User Group Japan" aka "Wicket-JA") and already 80+ people join with us. https://sourceforge.jp/projects/wicket-ja We are creating the group-site now (we haven't it yet. only mailing lists). Th

Re: create new model object of a Form from one of its FormComp values??

2008-01-20 Thread Igor Vaynberg
personally i would map the form to a bean, and then in onsubmit() transfer those properties to an instance of your domain object. -igor On Jan 20, 2008 7:54 AM, infodoc <[EMAIL PROTECTED]> wrote: > > Hello All, > > Have tried to search for this in the forums, but am not having much success > due

Re: How to change the style of navigator in PageableViewList

2008-01-20 Thread Michael Sparer
just subclass the pagingnavigator and add a markup that fits your needs ... Mead Lai-2 wrote: > > > Hi, > should the navigator of PageableViewList be individuation,or designe by > user?the default style is too ugly, just like the example in the wicket > package: > << < 1234...789> >>; > Now,

Replace HTML Frameset

2008-01-20 Thread BatiB80
Hi together, I've a page with a Frameset. In one frame I include a page from another server. I want to replace the Frameset by something else... - Does anybody knows how I can do this??? Thanks, Sebastian -- View this message in context: http://www.nabble.com/Replace-HTML-Frameset-tp14983298p1

Re: Stateless pages and performance

2008-01-20 Thread Jonathan Locke
sorry, can't find it. maybe someone downloaded it and could post it to the list. Uwe Schäfer wrote: > > Jonathan Locke schrieb: > > hi Jonathan >> Until you've got a handle on your scaling problem (and it >> probably is that and not a performance problem) and you know what needs >> to >> be

create new model object of a Form from one of its FormComp values??

2008-01-20 Thread infodoc
Hello All, Have tried to search for this in the forums, but am not having much success due to the multiple concepts involved. I apologize in advance for the long post. Question: is there a way to, after a Form has been submitted, create a new model object for that Form, based upon a value of a

Re: How to get page URL

2008-01-20 Thread Boon Aik Chew
I'm touched, thanks On Jan 19, 2008 11:55 PM, Hoover, William <[EMAIL PROTECTED]> wrote: > It wasn't ;o) I have been adding them as they come in :o) > > -Original Message- > From: Boon Aik Chew [mailto:[EMAIL PROTECTED] > Sent: Saturday, January 19, 2008 2:55 AM > To: users@wicket.apache.

How to redisplay a previous/known page

2008-01-20 Thread dvd
Hello: in a call back, I'd like to setResponsePage() for example, redisplay the home page without having to do things like setResponsePage(new HomePage(params)), rather, I'd like to retrieved the HomePage object that has already been created when user accessed it the first time. Basically how to

Re: Stateless pages and performance

2008-01-20 Thread Uwe Schäfer
Jonathan Locke schrieb: hi Jonathan Until you've got a handle on your scaling problem (and it probably is that and not a performance problem) and you know what needs to be tuned, the best policy is probably to just build something simply and quickly in order to discover if you even have a proble