- tool to migrate JSF apps to Wicket (heh heh)
+1 for that. this would be the killer argument to finally start transitioning to wicket.

it does not need to be a 100% converter of all jsf+backing beans - a two-way method for sharing panels/components would enable better transition to wicket.
just a quick half-baked idea how this may look:
using wicket in jsf
<w:panel clazz="com.example.SomeWebPage" pageParameters="#{BackingBean.pageParams}" xPath="/html/body/div[2]/div[2]"/>
and the other way round from jsf into wicket:
XPathExpression xPath = xpath.compile("/html/body/div[2]/div[2]");
add(new JsfPanel("jsfPanel","WEB-INF/somepage.jsp", xPath));

of course this means the whole page is rendered although only a part of the markup is needed. would be sufficient for my usecase.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to